fix: Remove rtx from main thread name

pull/8612/head
Jeroen de Bruijn 2018-11-03 18:32:23 +01:00
parent 440905a84e
commit 2ef82e18f5
No known key found for this signature in database
GPG Key ID: 7D12D6AB2A547EBB
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ MBED_NORETURN void mbed_rtos_start()
_main_thread_attr.cb_size = sizeof(_main_obj);
_main_thread_attr.cb_mem = &_main_obj;
_main_thread_attr.priority = osPriorityNormal;
_main_thread_attr.name = "rtx_main";
_main_thread_attr.name = "main";
/* Allow non-secure main thread to call secure functions */
#if defined(DOMAIN_NS) && (DOMAIN_NS == 1U)