Searched refs:pthread_cond_timedwait (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-10.2-release/contrib/ntp/lib/isc/pthreads/
H A Dcondition.c57 presult = pthread_cond_timedwait(c, &m->mutex, &ts);
59 presult = pthread_cond_timedwait(c, m, &ts);
69 "pthread_cond_timedwait() %s %s",
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DCondition.cpp87 err = ::pthread_cond_timedwait (&m_condition, mutex.GetMutex(), &abstime_ts);
/freebsd-10.2-release/lib/libstdthreads/
H A Dcnd.c81 switch (pthread_cond_timedwait(cond, mtx, ts)) {
/freebsd-10.2-release/contrib/libc++/src/
H A Dcondition_variable.cpp74 int ec = pthread_cond_timedwait(&__cv_, lk.mutex()->native_handle(), &ts);
/freebsd-10.2-release/contrib/apr/locks/unix/
H A Dthread_cond.c89 rv = pthread_cond_timedwait(&cond->cond, &mutex->mutex, &abstime);
/freebsd-10.2-release/contrib/netbsd-tests/lib/libpthread/
H A Dt_cond.c320 * 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(
[all...]
H A Dt_condwait.c78 switch (ret = pthread_cond_timedwait(&cond, &m, &ts)) {
99 ATF_REQUIRE_MSG(0, "pthread_cond_timedwait: %s", strerror(ret));
122 atf_tc_set_md_var(tc, "descr", "Checks pthread_cond_timedwait "
133 atf_tc_set_md_var(tc, "descr", "Checks pthread_cond_timedwait "
/freebsd-10.2-release/contrib/ofed/management/opensm/complib/
H A Dcl_event.c155 wait_ret = pthread_cond_timedwait(&p_event->condvar,
H A Dcl_timer.c153 pthread_cond_timedwait(&gp_timer_prov->cond,
/freebsd-10.2-release/contrib/ntp/sntp/libevent/
H A Devthread_pthread.c150 r = pthread_cond_timedwait(cond, lock, &ts);
/freebsd-10.2-release/contrib/sendmail/libmilter/
H A Dmonitor.c122 r = pthread_cond_timedwait(&Mon_cv, &Mon_mutex,
H A Dlibmilter.h162 r = pthread_cond_timedwait(cp,mp,&timeout); \
165 "pthread_cond_timedwait error %d", r); \
/freebsd-10.2-release/sbin/hastd/
H A Dsynch.h174 error = pthread_cond_timedwait(cv, lock, &ts);
/freebsd-10.2-release/contrib/openbsm/bin/auditdistd/
H A Dsynch.h179 error = pthread_cond_timedwait(cv, lock, &ts);
/freebsd-10.2-release/crypto/heimdal/lib/ipc/
H A Dcommon.c147 ret = pthread_cond_timedwait(&s->cond, &s->mutex, &ts);
/freebsd-10.2-release/include/
H A Dpthread.h195 int pthread_cond_timedwait(pthread_cond_t *,
/freebsd-10.2-release/lib/libc/include/
H A Dnamespace.h122 #define pthread_cond_timedwait _pthread_cond_timedwait macro
H A Dun-namespace.h103 #undef pthread_cond_timedwait macro
/freebsd-10.2-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_work.c110 (void) pthread_cond_timedwait(&dph->dph_cv, &dph->dph_lock, &tv);
/freebsd-10.2-release/lib/libc/gen/
H A D_pthread_stubs.c265 STUB_FUNC3(pthread_cond_timedwait, PJT_COND_TIMEDWAIT, int, void *, void *, void *)
/freebsd-10.2-release/cddl/compat/opensolaris/misc/
H A Dthread_pool.c144 if (pthread_cond_timedwait(&tpool->tp_workcv,
/freebsd-10.2-release/share/man/man3/
H A DMakefile203 pthread_cond_timedwait.3 \
/freebsd-10.2-release/lib/libkse/thread/
H A Dthr_cond.c64 __weak_reference(__pthread_cond_timedwait, pthread_cond_timedwait);
798 * Because pthread_cond_timedwait() can timeout as well
/freebsd-10.2-release/lib/libthr/thread/
H A Dthr_cond.c57 __weak_reference(__pthread_cond_timedwait, pthread_cond_timedwait);
/freebsd-10.2-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c344 error = pthread_cond_timedwait(cv, &mp->m_lock, &ts);
379 error = pthread_cond_timedwait(cv, &mp->m_lock, &ts);

Completed in 347 milliseconds

12