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

/illumos-gate/usr/src/lib/libpicltree/
H A Dpicltree.c87 * evtq_lock: this lock protects the event queue. It is obtained
90 * evtq_cv: condition variable is protected by evtq_lock. It is
93 * evtq_empty: condition variable protected by evtq_lock. It is
156 static pthread_mutex_t evtq_lock = PTHREAD_MUTEX_INITIALIZER; variable
383 (void) pthread_mutex_lock(&evtq_lock);
386 (void) pthread_mutex_unlock(&evtq_lock);
400 (void) pthread_mutex_lock(&evtq_lock);
407 (void) pthread_cond_wait(&evtq_cv, &evtq_lock);
410 (void) pthread_mutex_unlock(&evtq_lock);
414 (void) pthread_mutex_unlock(&evtq_lock);
[all...]

Completed in 48 milliseconds