/src/lib/libpthread/ |
cnd.c | 97 switch (pthread_cond_timedwait(cond, mtx, ts)) {
|
pthread_cond.c | 61 __strong_alias(__libc_cond_timedwait,pthread_cond_timedwait) 125 pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, function in typeref:typename:int 233 return pthread_cond_timedwait(cond, mutex, NULL);
|
pthread.h | 132 int pthread_cond_timedwait(pthread_cond_t * __restrict, 313 * (pthread_attr_*). The pthread_cond_wait and pthread_cond_timedwait 373 #define pthread_cond_timedwait __libc_cond_timedwait macro
|
Makefile | 197 MLINKS+= pthread_cond.3 pthread_cond_timedwait.3
|
/src/tests/lib/libpthread/ |
t_cond.c | 320 * pthread_cond_timedwait(3) should 326 rv = pthread_cond_timedwait(&static_cond, &static_mutex, &ts); 340 atf_tc_set_md_var(tc, "descr", "Test pthread_cond_timedwait(3)"); 459 ATF_REQUIRE_EQ_MSG(pthread_cond_timedwait(&static_cond, &static_mutex, 460 &ts), ETIMEDOUT, "pthread_cond_timedwait() (unthreaded) in the " 468 ATF_REQUIRE_EQ_MSG(pthread_cond_timedwait(&static_cond, &static_mutex, 469 &ts), ETIMEDOUT, "pthread_cond_timedwait() (unthreaded) with zero " 481 ATF_REQUIRE_EQ_MSG(pthread_cond_timedwait(&static_cond, &static_mutex, 482 &ts), ETIMEDOUT, "pthread_cond_timedwait() (threaded) in the past"); 489 ATF_REQUIRE_EQ_MSG(pthread_cond_timedwait(&static_cond, &static_mutex [all...] |
t_condwait.c | 77 switch (ret = pthread_cond_timedwait(&cond, &m, &ts)) { 92 atf_tc_fail("pthread_cond_timedwait returned before timeout"); 95 ATF_REQUIRE_MSG(0, "pthread_cond_timedwait: %s", strerror(ret)); 118 atf_tc_set_md_var(tc, "descr", "Checks pthread_cond_timedwait " 129 atf_tc_set_md_var(tc, "descr", "Checks pthread_cond_timedwait "
|
t_cancellation.c | 565 RZ(pthread_cond_timedwait(&cond, &mutex, &t));
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/ |
dd_interceptors.cc | 193 INTERCEPTOR(int, pthread_cond_timedwait, pthread_cond_t *c, pthread_mutex_t *m, 199 int res = REAL(pthread_cond_timedwait)(cond, m, abstime); 318 INTERCEPT_FUNCTION_VER(pthread_cond_timedwait, "GLIBC_2.3.2");
|
/src/lib/libisns/ |
isns_task.c | 98 rval = pthread_cond_timedwait(&task_p->wait_condvar,
|
/src/lib/librumpuser/ |
rumpuser_pth.c | 604 rv = pthread_cond_timedwait(&cv->pthcv, &mtx->pthmtx, &ts);
|
/src/tests/lib/libc/sys/ |
t_eventfd.c | 111 error = pthread_cond_timedwait(&ctx->cond, &ctx->mutex,
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_interceptors.cc | 1183 INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) { 1185 SCOPED_TSAN_INTERCEPTOR(pthread_cond_timedwait, cond, m, abstime); 1186 return cond_wait(thr, pc, &si, REAL(pthread_cond_timedwait), cond, m, 2694 TSAN_INTERCEPT_VER(pthread_cond_timedwait, PTHREAD_ABI_BASE);
|