Searched defs:queue (Results 1 - 3 of 3) sorted by relevance
/bind-9.11.3/lib/isc/tests/ |
H A D | queue_test.c | 20 #include <isc/queue.h> 45 atf_tc_set_md_var(tc, "descr", "Check queue validity"); 49 item_queue_t queue; local 55 ISC_QUEUE_INIT(queue, qlink); 66 ATF_CHECK(ISC_QUEUE_EMPTY(queue)); 68 ISC_QUEUE_POP(queue, qlink, p); 72 ISC_QUEUE_PUSH(queue, &one, qlink); 75 ATF_CHECK(! ISC_QUEUE_EMPTY(queue)); 77 ISC_QUEUE_POP(queue, qlink, p); 80 ATF_CHECK(ISC_QUEUE_EMPTY(queue)); [all...] |
/bind-9.11.3/lib/isc/ |
H A D | task.c | 456 * Moves a task onto the appropriate run queue. 591 * We need to add this task to the ready queue. 598 * be trying to add this task to the ready queue. The 603 * we add the task to the ready queue. 696 * Purge events from a task's event queue. 724 * Purge events from a task's event queue. 738 * Purge 'event' from a task's event queue. 746 * If 'event' is on the task's event queue, it will be purged, 748 * on the task's event queue; in fact, it can even be an invalid 750 * event queue 948 isc__tasklist_t queue; local [all...] |
/bind-9.11.3/lib/dns/ |
H A D | zone.c | 12665 * the queue. 14105 * for the zone, just queue the new one and exit. 16524 * queue will be serviced before the low one. 16536 isc_boolean_t queue; local 16561 queue = ISC_TF(zmgr->ioactive > zmgr->iolimit); 16562 if (queue) { 16571 if (!queue) 18703 * Called from the zone task's queue after the relevant event is posted by
|
Completed in 59 milliseconds