Searched refs:tp_head (Results 1 – 2 of 2) sorted by relevance
63 for (job = tpool->tp_head; job != NULL; job = tpool->tp_head) { in delete_pool()64 tpool->tp_head = job->tpj_next; in delete_pool()95 if (tpool->tp_head == NULL && tpool->tp_active == NULL) { in notify_waiters()146 while ((tpool->tp_head == NULL || in tpool_worker()174 if (tpool->tp_head == NULL) in tpool_worker()177 if ((job = tpool->tp_head) != NULL && in tpool_worker()182 tpool->tp_head = job->tpj_next; in tpool_worker()342 if (tpool->tp_head == NULL) in tpool_dispatch()343 tpool->tp_head = job; in tpool_dispatch()435 while (tpool->tp_head != NULL || tpool->tp_active != NULL) { in tpool_wait()[all …]
73 tpool_job_t *tp_head; /* FIFO job queue */ member