HomeSort by: relevance | last modified time | path
    Searched defs:cond_t (Results 1 - 3 of 3) sorted by relevancy

  /src/external/cddl/osnet/dist/head/
synch.h 56 upad64_t pad2[2]; /* reserved for a cond_t */
63 * and cond_t (lwp_cond_t) which are defined in <synch.h>. A nested included
68 * cond_t/lwp_cond_t should also be done to pthread_mutex_t/pthread_cond_t.
71 typedef lwp_cond_t cond_t; typedef
86 cond_t readercv; /* used only to indicate ownership */
87 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_t *, const timespec_t *)
    [all...]
thread.h 46 typedef pthread_cond_t cond_t; typedef
  /src/lib/libc/include/
reentrant.h 109 #define cond_t pthread_cond_t macro
155 int __libc_cond_init(cond_t *, const condattr_t *);
156 int __libc_cond_signal(cond_t *);
157 int __libc_cond_broadcast(cond_t *);
158 int __libc_cond_wait(cond_t *, mutex_t *);
160 int __libc_cond_timedwait(cond_t *, mutex_t *, const struct timespec *);
162 int __libc_cond_destroy(cond_t *);
241 int __libc_cond_init_stub(cond_t *, const condattr_t *);
242 int __libc_cond_signal_stub(cond_t *);
243 int __libc_cond_broadcast_stub(cond_t *);
    [all...]

Completed in 24 milliseconds