Searched refs:work_queues (Results 1 – 1 of 1) sorted by relevance
43 …struct work_queue **work_queues; /*!< Point to queue array, and the priority inverse array in… member164 if (osi_thead_work_queue_get(thread->work_queues[idx], &item) == true) { in osi_thread_run()223 …thread->work_queues = (struct work_queue **)osi_calloc(sizeof(struct work_queue *) * work_queue_nu… in osi_thread_create()224 if (thread->work_queues == NULL) { in osi_thread_create()231 thread->work_queues[i] = osi_work_queue_create(queue_len); in osi_thread_create()232 if (thread->work_queues[i] == NULL) { in osi_thread_create()274 if (thread->work_queues && thread->work_queues[i]) { in osi_thread_create()275 osi_work_queue_delete(thread->work_queues[i]); in osi_thread_create()276 thread->work_queues[i] = NULL; in osi_thread_create()280 if (thread->work_queues) { in osi_thread_create()[all …]