File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
subsys/ipc/ipc_service/backends Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1255,6 +1255,7 @@ static int backend_init(const struct device *instance)
1255
1255
#ifdef CONFIG_MULTITHREADING
1256
1256
static K_THREAD_STACK_DEFINE (ep_bound_work_q_stack , EP_BOUND_WORK_Q_STACK_SIZE ) ;
1257
1257
static bool is_work_q_started ;
1258
+ struct k_work_queue_config work_q_cfg = { .name = "icbmsg_workq" };
1258
1259
1259
1260
#if defined(CONFIG_ARCH_POSIX )
1260
1261
native_emb_addr_remap ((void * * )& conf -> tx .blocks_ptr );
@@ -1265,7 +1266,7 @@ static int backend_init(const struct device *instance)
1265
1266
k_work_queue_init (& ep_bound_work_q );
1266
1267
k_work_queue_start (& ep_bound_work_q , ep_bound_work_q_stack ,
1267
1268
K_THREAD_STACK_SIZEOF (ep_bound_work_q_stack ),
1268
- EP_BOUND_WORK_Q_PRIORITY , NULL );
1269
+ EP_BOUND_WORK_Q_PRIORITY , & work_q_cfg );
1269
1270
1270
1271
is_work_q_started = true;
1271
1272
}
You can’t perform that action at this time.
0 commit comments