/illumos-gate/usr/src/lib/libc/port/threads/ |
H A D | c11_thr.c | 47 cnd_broadcast(cnd_t *cnd) in cnd_broadcast() argument 51 ret = pthread_cond_broadcast(cnd); in cnd_broadcast() 59 cnd_destroy(cnd_t *cnd) in cnd_destroy() argument 61 if (pthread_cond_destroy(cnd) != 0) in cnd_destroy() 66 cnd_init(cnd_t *cnd) in cnd_init() argument 70 ret = pthread_cond_init(cnd, NULL); in cnd_init() 77 cnd_signal(cnd_t *cnd) in cnd_signal() argument 81 ret = pthread_cond_signal(cnd); in cnd_signal() 90 cnd_timedwait(cnd_t *_RESTRICT_KYWD cnd, mtx_t *_RESTRICT_KYWD mtx, in cnd_timedwait() argument 95 ret = pthread_cond_timedwait(cnd, mtx, ts); in cnd_timedwait() [all …]
|
/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | out.h | 72 #define ASSERT(cnd) \ argument 73 ((void)((cnd) || (outfl(O_ABORT, __FILE__, __LINE__, \ 74 "assertion failure: %s", #cnd), 0))) 76 #define ASSERTinfo(cnd, info) \ argument 77 ((void)((cnd) || (outfl(O_ABORT, __FILE__, __LINE__, \ 78 "assertion failure: %s (%s = %s)", #cnd, #info, info), 0))) 92 #define ASSERT(cnd) ((void)0) argument 93 #define ASSERTinfo(cnd, info) ((void)0) argument
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | cons.c | 451 STRUCT_DECL(cons_getdev, cnd); in cnprivateioc() 452 STRUCT_INIT(cnd, flag); in cnprivateioc() 454 bzero(STRUCT_BUF(cnd), STRUCT_SIZE(cnd)); in cnprivateioc() 463 STRUCT_FSET(cnd, cnd_rconsdev, rconsdev32); in cnprivateioc() 465 STRUCT_FSET(cnd, cnd_rconsdev, rconsdev); in cnprivateioc() 468 if (ddi_copyout(STRUCT_BUF(cnd), (void *)arg, in cnprivateioc() 469 STRUCT_SIZE(cnd), flag) != 0) { in cnprivateioc()
|
/illumos-gate/usr/src/test/libc-tests/tests/ |
H A D | c11_threads.c | 303 cnd_t cnd; in cthr_test_cndtime() local 309 VERIFY3S(cnd_init(&cnd), ==, thrd_success); in cthr_test_cndtime() 312 VERIFY3S(cnd_timedwait(&cnd, &mtx, &ts), ==, thrd_timedout); in cthr_test_cndtime() 316 cnd_destroy(&cnd); in cthr_test_cndtime()
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/ |
H A D | gmt_mktime.c | 43 #define assert_time(cnd) if(!(cnd)) return (time_t) -1 in krb5int_gmt_mktime() argument
|
/illumos-gate/usr/src/cmd/ttymon/ |
H A D | tmexpress.c | 219 struct cons_getdev cnd; in parse_args() local 246 if (ioctl(cn_fd, CONS_GETDEV, &cnd) != -1) in parse_args() 248 get_ttymode_prop(cnd.cnd_rconsdev); in parse_args()
|
/illumos-gate/usr/src/man/man3c/ |
H A D | Makefile | 77 cnd.3c \ 1738 cnd_broadcast.3c := LINKSRC = cnd.3c 1739 cnd_destroy.3c := LINKSRC = cnd.3c 1740 cnd_init.3c := LINKSRC = cnd.3c 1741 cnd_signal.3c := LINKSRC = cnd.3c 1742 cnd_timedwait.3c := LINKSRC = cnd.3c 1743 cnd_wait.3c := LINKSRC = cnd.3c
|
/illumos-gate/usr/src/pkg/manifests/ |
H A D | system-library.man3c.inc | 240 file path=usr/share/man/man3c/cnd.3c 241 link path=usr/share/man/man3c/cnd_broadcast.3c target=cnd.3c 242 link path=usr/share/man/man3c/cnd_destroy.3c target=cnd.3c 243 link path=usr/share/man/man3c/cnd_init.3c target=cnd.3c 244 link path=usr/share/man/man3c/cnd_signal.3c target=cnd.3c 245 link path=usr/share/man/man3c/cnd_timedwait.3c target=cnd.3c 246 link path=usr/share/man/man3c/cnd_wait.3c target=cnd.3c
|