diff options
Diffstat (limited to 'os/rt/src/chsys.c')
-rw-r--r-- | os/rt/src/chsys.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/os/rt/src/chsys.c b/os/rt/src/chsys.c index a76fb7c65..7e0a6c806 100644 --- a/os/rt/src/chsys.c +++ b/os/rt/src/chsys.c @@ -130,9 +130,11 @@ void chSysInit(void) { #endif
chSysEnable();
+#if CH_CFG_USE_REGISTRY == TRUE
/* Note, &ch_debug points to the string "main" if the registry is
- active, else the parameter is ignored.*/
+ active.*/
chRegSetThreadName((const char *)&ch_debug);
+#endif
#if CH_CFG_NO_IDLE_THREAD == FALSE
{
|