Lines Matching defs:work
51 /* Block (dropping the lock) until new work arrives for us. */
65 /* Call the task's work func. */
67 task->work(task->data);
131 * Queues a request for the work function to be asynchronously executed by the
134 * The work func will get the "data" argument as its parameter -- any
135 * communication between the caller and the work function will occur through
138 * If there is an error, the work function is called immediately and NULL is
143 threadpool_task_func work, void *data)
148 work(data);
154 work(data);
158 task->work = work;