Home
last modified time | relevance | path

Searched refs:pthread_rwlock_tryrdlock (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp114 INTERCEPTOR(int, pthread_rwlock_tryrdlock, pthread_rwlock_t *m) { in INTERCEPTOR() argument
116 int res = REAL(pthread_rwlock_tryrdlock)(m); in INTERCEPTOR()
308 INTERCEPT_FUNCTION(pthread_rwlock_tryrdlock); in InitializeInterceptors()
/freebsd/cddl/contrib/opensolaris/head/
H A Dthread.h60 #define rw_tryrdlock(l) pthread_rwlock_tryrdlock(l)
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DRWMutex.cpp96 int errorcode = pthread_rwlock_tryrdlock(rwlock); in try_lock_shared()
/freebsd/crypto/heimdal/include/
H A Dheim_threads.h100 #define HEIMDAL_RWLOCK_tryrdlock(l) pthread_rwlock_tryrdlock(l)
/freebsd/lib/libthr/
H A Dpthread.map95 pthread_rwlock_tryrdlock;
/freebsd/include/
H A Dpthread.h265 int pthread_rwlock_tryrdlock(pthread_rwlock_t * __rwlock)
/freebsd/lib/libc/include/
H A Dnamespace.h179 #define pthread_rwlock_tryrdlock _pthread_rwlock_tryrdlock macro
H A Dun-namespace.h160 #undef pthread_rwlock_tryrdlock
/freebsd/lib/libthr/thread/
H A Dthr_rwlock.c49 __weak_reference(_Tthr_rwlock_tryrdlock, pthread_rwlock_tryrdlock);
/freebsd/lib/libc/gen/
H A DSymbol.map54 pthread_rwlock_tryrdlock;
H A D_pthread_stubs.c251 STUB_FUNC1(pthread_rwlock_tryrdlock, PJT_RWLOCK_TRYRDLOCK, int, void *)
/freebsd/share/man/man3/
H A DMakefile514 PTHREAD_MLINKS+=pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1513 TSAN_INTERCEPTOR(int, pthread_rwlock_tryrdlock, void *m) { in TSAN_INTERCEPTOR() argument
1514 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_tryrdlock, m); in TSAN_INTERCEPTOR()
1515 int res = REAL(pthread_rwlock_tryrdlock)(m); in TSAN_INTERCEPTOR()
2980 TSAN_INTERCEPT(pthread_rwlock_tryrdlock); in InitializeInterceptors()
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddone_abilist.txt373 fun:pthread_rwlock_tryrdlock=discard
H A Dlibc_ubuntu1404_abilist.txt2630 fun:pthread_rwlock_tryrdlock=uninstrumented
/freebsd/sys/contrib/openzfs/lib/libzpool/
H A Dkernel.c291 error = pthread_rwlock_tryrdlock(&rwlp->rw_lock); in rw_tryenter()