Home
last modified time | relevance | path

Searched refs:sem_open (Results 1 – 17 of 17) sorted by relevance

/freebsd/tools/regression/posixsem2/
H A Dsemtest.c62 s = sem_open(SEM_NAME, O_CREAT, 0777, 0); in test_named()
65 s2 = sem_open(SEM_NAME, O_CREAT, 0777, 0); in test_named()
104 s = sem_open(SEM_NAME, O_CREAT | O_EXCL, 0777, 0); in test_named2()
107 s2 = sem_open(SEM_NAME, O_CREAT | O_EXCL, 0777, 0); in test_named2()
113 s3 = sem_open(SEM_NAME, 0); in test_named2()
/freebsd/contrib/netbsd-tests/lib/semaphore/
H A Dsem.c249 sem1 = sem_open(SEM1, 0); in ATF_TC_BODY()
253 sem1 = sem_open(SEM1, O_CREAT, 0444, 1); in ATF_TC_BODY()
257 rv = sem_open(SEM1, O_CREAT | O_EXCL); in ATF_TC_BODY()
261 sem2 = sem_open(SEM2, O_CREAT, 0444, 0); in ATF_TC_BODY()
307 sem = sem_open(SEM, O_CREAT, 0444, 0); in ATF_TC_BODY()
/freebsd/include/
H A Dsemaphore.h63 sem_t *sem_open(const char *, int, ...);
/freebsd/contrib/netbsd-tests/lib/librt/
H A Dt_sem.c118 sem_b = sem_open("/sem_b", O_CREAT | O_EXCL, 0644, 0); in ATF_TC_BODY()
164 sem_a = sem_open("/sem_a", O_CREAT | O_EXCL, 0644, 0); in ATF_TC_BODY()
/freebsd/lib/libc/gen/
H A DMakefile.inc294 sem_open.3 \
509 MLINKS+=sem_open.3 sem_close.3 \
510 sem_open.3 sem_unlink.3
H A Dsem.c114 FB10_COMPAT(_libc_sem_open_compat, sem_open);
H A Dsem_new.c57 __weak_reference(_sem_open, sem_open);
H A DSymbol.map351 sem_open;
/freebsd/contrib/netbsd-tests/lib/libpthread/
H A Dt_sem.c129 semp = sem_open("/foo", O_CREAT | O_EXCL, 0644, 0); in ATF_TC_BODY()
/freebsd/lib/libc/include/
H A Dnamespace.h221 #define sem_open _sem_open macro
H A Dun-namespace.h202 #undef sem_open
/freebsd/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c898 Sem = sem_open (SemaphoreName, O_EXCL|O_CREAT, 0755, InitialUnits); in AcpiOsCreateSemaphore()
/freebsd/contrib/openbsm/etc/
H A Daudit_event338 342:AUE_DARWIN_SEMOPEN:sem_open(2):ip
392 43032:AUE_SEMOPEN:sem_open(2):ip
/freebsd/contrib/ofed/librdmacm/
H A Dpreload.c694 sem = sem_open("/rsocket_fork", O_CREAT | O_RDWR, in fork_passive()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc6585 INTERCEPTOR(__sanitizer_sem_t *, sem_open, const char *name, int oflag, ...) {
6591 COMMON_INTERCEPTOR_ENTER(ctx, sem_open, name, oflag, mode, value);
6593 __sanitizer_sem_t *s = REAL(sem_open)(name, oflag, mode, value);
6615 COMMON_INTERCEPT_FUNCTION(sem_open); \
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Dlibc_ubuntu1404_abilist.txt2814 fun:sem_open=uninstrumented
/freebsd/contrib/sqlite3/
H A Dsqlite3.c44785 pNew->pInode->pSem = sem_open(zSemName, O_CREAT, 0666, 1); in fillInUnixFile()