Home
last modified time | relevance | path

Searched refs:O_CLOFORK (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.61.12/tests/
H A Dlockf_basic.c13 #ifndef O_CLOFORK
14 #define O_CLOFORK 0x08000000 macro
275 T_ASSERT_POSIX_SUCCESS((a_confined = open(A_PATH, O_CLOFORK | O_RDWR)), "open(a, O_CLOFORK)");
277 T_ASSERT_POSIX_SUCCESS((b_confined = open(B_PATH, O_CLOFORK | O_RDWR)), "open(b, O_CLOFORK)");
/xnu-12377.61.12/bsd/sys/
H A Dfcntl.h177 #define O_CLOFORK 0x08000000 /* implicitly set FD_CLOFORK */ macro
/xnu-12377.61.12/bsd/kern/
H A Dkern_guarded.c317 return open1(ctx, &nd, uap->flags | O_CLOFORK, &va, in guarded_open_np()
393 return open1(ctx, &nd, uap->flags | O_CLOFORK, &va, in guarded_open_dprotected_np()
/xnu-12377.61.12/bsd/vfs/
H A Dvfs_syscalls.c4925 if (flags & O_CLOFORK) { in open1()