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 4671e45 commit 5c33d2aCopy full SHA for 5c33d2a
platform/rtos/freertos/src/mender-rtos.c
@@ -96,7 +96,7 @@ mender_rtos_init(void) {
96
}
97
if (pdPASS
98
!= xTaskCreate(mender_rtos_work_queue_thread,
99
- "mender",
+ "mender_rtos_work_queue",
100
(configSTACK_DEPTH_TYPE)(CONFIG_MENDER_RTOS_WORK_QUEUE_STACK_SIZE * 1024 / sizeof(configSTACK_DEPTH_TYPE)),
101
NULL,
102
CONFIG_MENDER_RTOS_WORK_QUEUE_PRIORITY,
platform/rtos/zephyr/src/mender-rtos.c
@@ -85,6 +85,7 @@ mender_rtos_init(void) {
85
CONFIG_MENDER_RTOS_WORK_QUEUE_STACK_SIZE * 1024,
86
87
NULL);
88
+ k_thread_name_set(k_work_queue_thread_get(&mender_rtos_work_queue_handle), "mender_rtos_work_queue");
89
90
return MENDER_OK;
91
0 commit comments