Home
last modified time | relevance | path

Searched refs:cond_wait (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/netbsd-tests/lib/libpthread/
H A Dt_condwait.c107 cond_wait(clockid_t clck, const char *msg) { in cond_wait() function
126 cond_wait(CLOCK_REALTIME, "CLOCK_REALTIME"); in ATF_TC_BODY()
137 cond_wait(CLOCK_MONOTONIC, "CLOCK_MONOTONIC"); in ATF_TC_BODY()
/freebsd-12.1/contrib/libevent/test/
H A Dregress_thread.c69 struct cond_wait { struct
77 struct cond_wait *cw = arg; in wake_all_timeout() argument
87 struct cond_wait *cw = arg; in wake_one_timeout()
101 struct cond_wait cw; in basic_thread()
261 struct cond_wait *cond;
295 struct cond_wait cond; in thread_conditions_simple()
/freebsd-12.1/contrib/ntp/sntp/libevent/test/
H A Dregress_thread.c69 struct cond_wait { struct
77 struct cond_wait *cw = arg; in wake_all_timeout() argument
87 struct cond_wait *cw = arg; in wake_one_timeout()
101 struct cond_wait cw; in basic_thread()
261 struct cond_wait *cond;
295 struct cond_wait cond; in thread_conditions_simple()
/freebsd-12.1/contrib/gcc/
H A Dgthr-solaris.h94 __gthrw(cond_wait) in __gthrw()
377 return __gthrw_(cond_wait) ((cond_t *) (&(condition->backend)), in __gthread_objc_condition_wait()
/freebsd-12.1/lib/libc/rpc/
H A Dclnt_dg.c347 cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock); in clnt_dg_call()
632 cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock); in clnt_dg_freeres()
660 cond_wait(&dg_cv[cu->cu_fd], &clnt_fd_lock); in clnt_dg_control()
802 cond_wait(&dg_cv[cu_fd], &clnt_fd_lock); in clnt_dg_destroy()
H A Dclnt_vc.c338 cond_wait(&vc_cv[ct->ct_fd], &clnt_fd_lock); in clnt_vc_call()
491 cond_wait(&vc_cv[ct->ct_fd], &clnt_fd_lock); in clnt_vc_freeres()
538 cond_wait(&vc_cv[ct->ct_fd], &clnt_fd_lock); in clnt_vc_control()
655 cond_wait(&vc_cv[ct_fd], &clnt_fd_lock); in clnt_vc_destroy()
/freebsd-12.1/lib/libc/include/
H A Dreentrant.h111 #define cond_wait(c, m) if (__isthreaded) \ macro
/freebsd-12.1/cddl/contrib/opensolaris/head/
H A Dthread.h65 #define cond_wait(l,m) pthread_cond_wait(l,m) macro
H A Dsynch.h104 int cond_wait(cond_t *, mutex_t *);
/freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc1150 static int cond_wait(ThreadState *thr, uptr pc, ScopedInterceptor *si, in cond_wait() function
1173 return cond_wait(thr, pc, &si, (int (*)(void *c, void *m, void *abstime))REAL( in INTERCEPTOR()
1181 return cond_wait(thr, pc, &si, REAL(pthread_cond_timedwait), cond, m, in INTERCEPTOR()
1190 return cond_wait(thr, pc, &si, REAL(pthread_cond_timedwait_relative_np), cond, in INTERCEPTOR()
2589 TSAN_INTERCEPTOR_NETBSD_ALIAS(int, cond_wait, void *c, void *m)
2804 TSAN_MAYBE_INTERCEPT_NETBSD_ALIAS(cond_wait); in InitializeInterceptors()
/freebsd-12.1/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c319 int ret = cond_wait(cv, &mp->m_lock); in cv_wait()