Skip to content

Commit 2ef82e1

Browse files
committed
fix: Remove rtx from main thread name
1 parent 440905a commit 2ef82e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtos/TARGET_CORTEX/mbed_rtos_rtx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ MBED_NORETURN void mbed_rtos_start()
5252
_main_thread_attr.cb_size = sizeof(_main_obj);
5353
_main_thread_attr.cb_mem = &_main_obj;
5454
_main_thread_attr.priority = osPriorityNormal;
55-
_main_thread_attr.name = "rtx_main";
55+
_main_thread_attr.name = "main";
5656

5757
/* Allow non-secure main thread to call secure functions */
5858
#if defined(DOMAIN_NS) && (DOMAIN_NS == 1U)

0 commit comments

Comments
 (0)