Home
last modified time | relevance | path

Searched refs:pthread_cond_clockwait (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/netbsd-tests/lib/libpthread/
H A Dt_condwait.c94 ret = pthread_cond_clockwait(&cond, &m, rp->clck, &ts); in run()
/freebsd/lib/libthr/
H A Dpthread.map347 pthread_cond_clockwait;
/freebsd/include/
H A Dpthread.h203 int pthread_cond_clockwait(pthread_cond_t * __restrict,
/freebsd/contrib/llvm-project/libcxx/include/__condition_variable/
H A Dcondition_variable.h214 int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts); in __do_timed_wait()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__condition_variable/
H A Dcondition_variable.h226 int __ec = pthread_cond_clockwait(&__cv_, __lk.mutex()->native_handle(), CLOCK_MONOTONIC, &__ts); in __do_timed_wait()
/freebsd/lib/libthr/thread/
H A Dthr_cond.c70 __weak_reference(__pthread_cond_clockwait, pthread_cond_clockwait);
/freebsd/share/man/man3/
H A DMakefile513 PTHREAD_MLINKS+=pthread_cond_timedwait.3 pthread_cond_clockwait.3
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1338 INTERCEPTOR(int, pthread_cond_clockwait, void *c, void *m, in INTERCEPTOR() argument
1341 SCOPED_TSAN_INTERCEPTOR(pthread_cond_clockwait, cond, m, clock, abstime); in INTERCEPTOR()
1344 [=]() { return REAL(pthread_cond_clockwait)(cond, m, clock, abstime); }, in INTERCEPTOR()
1347 #define TSAN_MAYBE_PTHREAD_COND_CLOCKWAIT TSAN_INTERCEPT(pthread_cond_clockwait)