Home
last modified time | relevance | path

Searched refs:work_queues (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.6.0/components/bt/common/osi/
Dthread.c31 …fixed_queue_t **work_queues; /*!< Point to queue array, and the priority inverse array in… member
66 work_item_t *item = fixed_queue_dequeue(thread->work_queues[idx], 0); in osi_thread_run()
128 thread->work_queues = (fixed_queue_t **)osi_malloc(sizeof(fixed_queue_t *) * work_queue_num); in osi_thread_create()
129 if (thread->work_queues == NULL) { in osi_thread_create()
134 thread->work_queues[i] = fixed_queue_new(DEFAULT_WORK_QUEUE_CAPACITY); in osi_thread_create()
135 if (thread->work_queues[i] == NULL) { in osi_thread_create()
177 if (thread->work_queues[i]) { in osi_thread_create()
178 fixed_queue_free(thread->work_queues[i], osi_free_func); in osi_thread_create()
182 if (thread->work_queues) { in osi_thread_create()
183 osi_free(thread->work_queues); in osi_thread_create()
[all …]