rt-thread/src
Chen Wang c4ba5ee068 kernel: Optimize display format for auto init when debugging
When RT_DEBUGING_AUTO_INIT is enabled, kenrel will add more
print message for auto init. However, the original format
easily causes the kernel printing and the init function printing
to be connected together, resulting in a confusing display
format.

For exmaple:
```
initialize lwip_system_initlwIP-2.0.3 initialized!
:0 done
```
Or
```
initialize sal_init[I/sal.skt] Socket Abstraction Layer initialize success.
:0 done
```

Solution: Add a carriage return to separate the kernel
printing and the init function printing.

After changing, the output will be:
```
initialize lwip_system_init
lwIP-2.0.3 initialized!
:0 done
```
Or
```
initialize sal_init
[I/sal.skt] Socket Abstraction Layer initialize success.
:0 done
```

Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
2024-11-26 21:44:19 -05:00
..
klibc [klibc] separate klibc Kconfig 2024-11-25 14:28:36 +08:00
Kconfig [klibc] separate klibc Kconfig 2024-11-25 14:28:36 +08:00
SConscript [klibc] add rt_sscanf 2024-11-25 09:49:23 +08:00
clock.c [src][clock] RT_TICK_PER_SECOND为1000时tick不用进行转换 2024-10-29 18:19:18 -04:00
components.c kernel: Optimize display format for auto init when debugging 2024-11-26 21:44:19 -05:00
cpu_mp.c [libcpu/arm64] add C11 atomic ticket spinlock (#8882) 2024-05-16 15:45:12 +08:00
cpu_up.c [arm64] add hw thread self (#8942) 2024-05-28 14:27:55 +08:00
defunct.c 去除多余空格 2024-10-21 13:05:08 +08:00
idle.c 解决编译错误 2024-10-21 13:05:08 +08:00
ipc.c [kernel][mutex] fix bug of thread exit without releasing mutex & add error check log 2024-09-11 18:03:43 -04:00
irq.c feat: Added rt_interrupt_context* family for nested interrupt handling 2024-11-03 10:08:45 +08:00
kservice.c feat: kernel/libcpu: fit into ilp32d 2024-09-01 15:12:34 -04:00
mem.c feat: kernel/libcpu: fit into ilp32d 2024-09-01 15:12:34 -04:00
memheap.c feat: kernel/libcpu: fit into ilp32d 2024-09-01 15:12:34 -04:00
mempool.c 🎯 Sync smart & scheduler codes (#8537) 2024-02-23 17:49:15 +08:00
object.c [fix][device] 修正使用rt_device_create创建设备,使用rt_device_destroy删除失败的问题 2024-09-03 18:24:45 -04:00
scheduler_comm.c feat: kernel/libcpu: fit into ilp32d 2024-09-01 15:12:34 -04:00
scheduler_mp.c feat: arm64: update thread self on sp-switch 2024-10-11 00:09:01 -04:00
scheduler_up.c [kernel] Specification interrupt nested level variable declaration type (#9568) 2024-10-23 17:08:29 -04:00
signal.c [src][signal]:fix issue with inconsistency between sig_mask and sigaddset implementations when using musl libc 2024-10-22 20:59:05 +08:00
slab.c feat: kernel/libcpu: fit into ilp32d 2024-09-01 15:12:34 -04:00
thread.c [kernel][mutex] fix bug of thread exit without releasing mutex & add error check log 2024-09-11 18:03:43 -04:00
timer.c [timer]add all soft timer config (#9048) 2024-06-20 04:20:38 +08:00