Searched refs:cnd (Results 1 – 2 of 2) sorted by relevance
87 CHECK_ERR(pthread_cond_init(&cnd->cond, &attr)); in __cond_init()91 void cond_init(struct cond *cnd) in cond_init() argument93 __cond_init(cnd, /*pshared=*/false); in cond_init()96 void cond_init_pshared(struct cond *cnd) in cond_init_pshared() argument98 __cond_init(cnd, /*pshared=*/true); in cond_init_pshared()101 void cond_destroy(struct cond *cnd) in cond_destroy() argument103 CHECK_ERR(pthread_cond_destroy(&cnd->cond)); in cond_destroy()111 void cond_signal(struct cond *cnd) in cond_signal() argument113 CHECK_ERR(pthread_cond_signal(&cnd->cond)); in cond_signal()116 void cond_broadcast(struct cond *cnd) in cond_broadcast() argument[all …]
115 void cond_init(struct cond *cnd);120 void cond_init_pshared(struct cond *cnd);121 void cond_destroy(struct cond *cnd);123 void cond_wait(struct cond *cnd, struct mutex *mtx) EXCLUSIVE_LOCKS_REQUIRED(mtx);124 void cond_signal(struct cond *cnd);125 void cond_broadcast(struct cond *cnd);
Completed in 4 milliseconds