Home
last modified time | relevance | path

Searched refs:cond (Results 1 – 2 of 2) sorted by relevance

/coreutils/src/
Dsystem.h435 # define LIKELY(cond) __builtin_expect ((cond), 1) argument
436 # define UNLIKELY(cond) __builtin_expect ((cond), 0) argument
438 # define LIKELY(cond) (cond) argument
439 # define UNLIKELY(cond) (cond) argument
Dsort.c254 pthread_cond_t cond; /* Conditional wait for empty queue to populate member
3454 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()