Searched refs:cnd (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dout.h74 #define ASSERT(cnd) \
75 ((void)((cnd) || (outfl(O_ABORT, __FILE__, __LINE__, \
76 "assertion failure: %s", #cnd), 0)))
78 #define ASSERTinfo(cnd, info) \
79 ((void)((cnd) || (outfl(O_ABORT, __FILE__, __LINE__, \
80 "assertion failure: %s (%s = %s)", #cnd, #info, info), 0)))
94 #define ASSERT(cnd) ((void)0)
95 #define ASSERTinfo(cnd, info) ((void)0)
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dc11_thr.c47 cnd_broadcast(cnd_t *cnd) argument
51 ret = pthread_cond_broadcast(cnd);
59 cnd_destroy(cnd_t *cnd) argument
61 if (pthread_cond_destroy(cnd) != 0)
66 cnd_init(cnd_t *cnd) argument
70 ret = pthread_cond_init(cnd, NULL);
77 cnd_signal(cnd_t *cnd) argument
81 ret = pthread_cond_signal(cnd);
90 cnd_timedwait(cnd_t *_RESTRICT_KYWD cnd, mtx_t *_RESTRICT_KYWD mtx, argument
95 ret = pthread_cond_timedwait(cnd, mt
105 cnd_wait(cnd_t *cnd, mtx_t *mtx) argument
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dgmt_mktime.c43 #define assert_time(cnd) if(!(cnd)) return (time_t) -1
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dc11_threads.c304 cnd_t cnd; local
310 VERIFY3S(cnd_init(&cnd), ==, thrd_success);
313 VERIFY3S(cnd_timedwait(&cnd, &mtx, &ts), ==, thrd_timedout);
317 cnd_destroy(&cnd);
/illumos-gate/usr/src/lib/fm/libldom/sparc/
H A Dldmsvcs_utils.c51 #define ASSERT(cnd) \
52 ((void) ((cnd) || ((void) fprintf(stderr, \
54 __FILE__, __LINE__, #cnd), 0)))
/illumos-gate/usr/src/man/man3c/
H A DMakefile73 cnd.3c \
1556 cnd_broadcast.3c := LINKSRC = cnd.3c
1557 cnd_destroy.3c := LINKSRC = cnd.3c
1558 cnd_init.3c := LINKSRC = cnd.3c
1559 cnd_signal.3c := LINKSRC = cnd.3c
1560 cnd_timedwait.3c := LINKSRC = cnd.3c
1561 cnd_wait.3c := LINKSRC = cnd.3c

Completed in 74 milliseconds