HomeSort by: relevance | last modified time | path
    Searched refs:pthread_rwlock_trywrlock (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/lib/libpthread/
t_rwlock.c 98 ATF_REQUIRE_EQ(pthread_rwlock_trywrlock(&lk), EBUSY);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 139 INTERCEPTOR(int, pthread_rwlock_trywrlock, pthread_rwlock_t *m) {
141 int res = REAL(pthread_rwlock_trywrlock)(m);
310 INTERCEPT_FUNCTION(pthread_rwlock_trywrlock);
  /src/lib/libpthread/
pthread.h 198 int pthread_rwlock_trywrlock(pthread_rwlock_t *);
427 #define pthread_rwlock_trywrlock __libc_rwlock_trywrlock macro
pthread_rwlock.c 79 __strong_alias(__libc_rwlock_trywrlock,pthread_rwlock_trywrlock)
368 pthread_rwlock_trywrlock(pthread_rwlock_t *ptr) function in typeref:typename:int
Makefile 239 MLINKS+= pthread_rwlock.3 pthread_rwlock_trywrlock.3
  /src/lib/librumpuser/
rumpuser_pth.c 381 if (pthread_rwlock_trywrlock(&rw->pthrw) != 0)
403 rv = pthread_rwlock_trywrlock(&rw->pthrw);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors.cc 1378 TSAN_INTERCEPTOR(int, pthread_rwlock_trywrlock, void *m) {
1379 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_trywrlock, m);
1380 int res = REAL(pthread_rwlock_trywrlock)(m);
2714 TSAN_INTERCEPT(pthread_rwlock_trywrlock);

Completed in 16 milliseconds