HomeSort by: relevance | last modified time | path
    Searched refs:pthread_cond_timedwait (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/external/gpl3/binutils/dist/gprofng/libcollector/
libgprofng.ver 31 pthread_cond_timedwait;
80 pthread_cond_timedwait;
93 pthread_cond_timedwait;
121 pthread_cond_timedwait;
synctrace.c 460 __real_pthread_cond_timedwait_2_17 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.17");
461 __real_pthread_cond_timedwait_2_3_2 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.3.2");
462 __real_pthread_cond_timedwait_2_2_5 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.2.5");
463 __real_pthread_cond_timedwait_2_0 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.0");
473 __real_pthread_cond_timedwait = dlsym (dlflag, "pthread_cond_timedwait");
476 CALL_REAL (fprintf)(stderr, "synctrace_init COL_ERROR_SYNCINIT pthread_cond_timedwait\n");
664 /*---------------------------------------------------- pthread_cond_timedwait */
707 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_17, pthread_cond_timedwait@GLIBC_2.17)
708 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_3_2, pthread_cond_timedwait@GLIBC_2.3.2)
709 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_2_5, pthread_cond_timedwait@GLIBC_2.2.5
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
libgprofng.ver 31 pthread_cond_timedwait;
80 pthread_cond_timedwait;
93 pthread_cond_timedwait;
121 pthread_cond_timedwait;
synctrace.c 460 __real_pthread_cond_timedwait_2_17 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.17");
461 __real_pthread_cond_timedwait_2_3_2 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.3.2");
462 __real_pthread_cond_timedwait_2_2_5 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.2.5");
463 __real_pthread_cond_timedwait_2_0 = dlvsym (dlflag, "pthread_cond_timedwait", "GLIBC_2.0");
473 __real_pthread_cond_timedwait = dlsym (dlflag, "pthread_cond_timedwait");
476 CALL_REAL (fprintf)(stderr, "synctrace_init COL_ERROR_SYNCINIT pthread_cond_timedwait\n");
664 /*---------------------------------------------------- pthread_cond_timedwait */
707 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_17, pthread_cond_timedwait@GLIBC_2.17)
708 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_3_2, pthread_cond_timedwait@GLIBC_2.3.2)
709 DCL_FUNC_VER (DCL_PTHREAD_COND_TIMEDWAIT, pthread_cond_timedwait_2_2_5, pthread_cond_timedwait@GLIBC_2.2.5
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/pthreads/
condition.c 59 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
61 presult = pthread_cond_timedwait(c, m, &ts);
71 "pthread_cond_timedwait() %s %s",
  /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
233 return pthread_cond_timedwait(cond, mutex, NULL);
pthread.h 132 int pthread_cond_timedwait(pthread_cond_t * __restrict,
409 #define pthread_cond_timedwait __libc_cond_timedwait macro
Makefile 213 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 "
  /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/external/bsd/libevent/dist/
evthread_pthread.c 153 r = pthread_cond_timedwait(cond, lock, &ts);
  /src/external/bsd/ntp/dist/sntp/libevent/
evthread_pthread.c 152 r = pthread_cond_timedwait(cond, lock, &ts);
  /src/external/gpl3/gcc.old/dist/libgcc/
gthr-posix.h 129 __gthrw(pthread_cond_timedwait)
875 return __gthrw_(pthread_cond_timedwait) (__cond, __mutex, __abs_timeout);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sync/
event.d 272 result = pthread_cond_timedwait(&m_cond, &m_mutex, &t);
condition.d 292 int rc = pthread_cond_timedwait( cast(pthread_cond_t*) &m_hndl,
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_work.c 110 (void) pthread_cond_timedwait(&dph->dph_cv, &dph->dph_lock, &tv);
  /src/external/cddl/osnet/lib/libzfs/
thread_pool.c 142 if (pthread_cond_timedwait(&tpool->tp_workcv,
  /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/external/cddl/osnet/dist/lib/libzpool/common/
kernel.c 356 error = pthread_cond_timedwait(cv, &mp->m_lock, &ts);
394 error = pthread_cond_timedwait(cv, &mp->m_lock, &ts);
  /src/tests/lib/libc/sys/
t_eventfd.c 111 error = pthread_cond_timedwait(&ctx->cond, &ctx->mutex,
  /src/external/bsd/jemalloc/dist/src/
background_thread.c 159 ret = pthread_cond_timedwait(&info->cond, &info->mtx.lock, &ts);
  /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);

Completed in 51 milliseconds

1 2