Searched refs:cond_t (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.2-release/cddl/compat/opensolaris/misc/
H A Dthread_pool_impl.h73 cond_t tp_busycv; /* synchronization in tpool_dispatch */
74 cond_t tp_workcv; /* synchronization with workers */
75 cond_t tp_waitcv; /* synchronization in tpool_wait() */
/freebsd-10.2-release/cddl/contrib/opensolaris/head/
H A Dsynch.h55 upad64_t pad2[2]; /* reserved for a cond_t */
62 * and cond_t (lwp_cond_t) which are defined in <synch.h>. A nested included
67 * cond_t/lwp_cond_t should also be done to pthread_mutex_t/pthread_cond_t.
70 typedef lwp_cond_t cond_t; typedef
85 cond_t readercv; /* used only to indicate ownership */
86 cond_t writercv; /* used only to indicate ownership */
102 int cond_init(cond_t *, int, void *);
103 int cond_destroy(cond_t *);
104 int cond_wait(cond_t *, mutex_t *);
105 int cond_timedwait(cond_t *, mutex_
[all...]
H A Dthread.h42 typedef pthread_cond_t cond_t; typedef
/freebsd-10.2-release/contrib/gcc/
H A Dgthr-solaris.h356 return __gthrw_(cond_init) ((cond_t *) (&(condition->backend)), USYNC_THREAD,
367 return __gthrw_(cond_destroy) ((cond_t *) (&(condition->backend)));
377 return __gthrw_(cond_wait) ((cond_t *) (&(condition->backend)),
388 return __gthrw_(cond_broadcast) ((cond_t *) (&(condition->backend)));
398 return __gthrw_(cond_signal) ((cond_t *) (&(condition->backend)));
/freebsd-10.2-release/lib/libc/include/
H A Dreentrant.h88 #define cond_t pthread_cond_t macro
/freebsd-10.2-release/lib/libc/rpc/
H A Dclnt_vc.c133 static cond_t *vc_cv;
207 assert(vc_cv == (cond_t *) NULL);
208 cv_allocsz = dtbsize * sizeof (cond_t);
209 vc_cv = (cond_t *) mem_alloc(cv_allocsz);
210 if (vc_cv == (cond_t *) NULL) {
223 assert(vc_cv != (cond_t *) NULL);
H A Dclnt_dg.c103 static cond_t *dg_cv;
192 cv_allocsz = dtbsize * sizeof (cond_t);
193 dg_cv = (cond_t *) mem_alloc(cv_allocsz);
194 if (dg_cv == (cond_t *) NULL) {
/freebsd-10.2-release/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h314 typedef cond_t kcondvar_t;
/freebsd-10.2-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c245 cond_t rll_cv;

Completed in 191 milliseconds