Searched refs:cond (Results 1 – 2 of 2) sorted by relevance
435 # define LIKELY(cond) __builtin_expect ((cond), 1) argument436 # define UNLIKELY(cond) __builtin_expect ((cond), 0) argument438 # define LIKELY(cond) (cond) argument439 # define UNLIKELY(cond) (cond) argument
254 pthread_cond_t cond; /* Conditional wait for empty queue to populate member3454 pthread_cond_destroy (&queue->cond); in queue_destroy()3469 pthread_cond_init (&queue->cond, nullptr); in queue_init()3481 pthread_cond_signal (&queue->cond); in queue_insert()3493 pthread_cond_wait (&queue->cond, &queue->mutex); in queue_pop()