We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aabd8e7 commit 4f60201Copy full SHA for 4f60201
kernel/work_q.c
@@ -25,7 +25,7 @@ void k_work_q_start(struct k_work_q *work_q, k_thread_stack_t *stack,
25
{
26
k_queue_init(&work_q->queue);
27
(void)k_thread_create(&work_q->thread, stack, stack_size, z_work_q_main,
28
- work_q, 0, 0, prio, 0, 0);
+ work_q, NULL, NULL, prio, 0, 0);
29
30
k_thread_name_set(&work_q->thread, WORKQUEUE_THREAD_NAME);
31
}
0 commit comments