Lines Matching defs:data
42 threadpool_worker(void *data)
44 struct threadpool *pool = data;
67 task->work(task->data);
80 wthreadpool_worker(void *data)
82 threadpool_worker(data);
134 * The work func will get the "data" argument as its parameter -- any
143 threadpool_task_func work, void *data)
148 work(data);
154 work(data);
159 task->data = data;