Lines Matching refs:cond
58 n_condInit(struct _WsbmCond *cond, struct _WsbmThreadFuncs *func) in n_condInit() argument
60 cond->func = func; in n_condInit()
71 n_condNone(struct _WsbmCond *cond __attribute__ ((unused))) in n_condNone() argument
77 n_condWait(struct _WsbmCond *cond __attribute__ ((unused)), struct _WsbmMutex *mutex __attribute__ … in n_condWait() argument
115 pthread_cond_t cond; member
180 p_condInit(struct _WsbmCond *cond, struct _WsbmThreadFuncs *func) in p_condInit() argument
182 struct _WsbmPCond *pCond = pCondConvert(cond); in p_condInit()
188 pthread_cond_init(&pCond->cond, NULL); in p_condInit()
193 p_condFree(struct _WsbmCond *cond) in p_condFree() argument
195 struct _WsbmPCond *pCond = pCondConvert(cond); in p_condFree()
197 pthread_cond_destroy(&pCond->cond); in p_condFree()
201 p_condBroadcast(struct _WsbmCond *cond) in p_condBroadcast() argument
203 struct _WsbmPCond *pCond = pCondConvert(cond); in p_condBroadcast()
205 pthread_cond_broadcast(&pCond->cond); in p_condBroadcast()
209 p_condWait(struct _WsbmCond *cond, struct _WsbmMutex *mutex) in p_condWait() argument
211 struct _WsbmPCond *pCond = pCondConvert(cond); in p_condWait()
214 pthread_cond_wait(&pCond->cond, &pMutex->mutex); in p_condWait()