MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / init_bss

Function init_bss

bsp/allwinner/d1/board/board.c:50–59  ·  view source on GitHub ↗

初始化BSS节区

Source from the content-addressed store, hash-verified

48
49//初始化BSS节区
50void init_bss(void)
51{
52 unsigned int *dst;
53
54 dst = &__bss_start;
55 while (dst < &__bss_end)
56 {
57 *dst++ = 0;
58 }
59}
60
61static void __rt_assert_handler(const char *ex_string, const char *func, rt_size_t line)
62{

Callers 1

primary_cpu_entryFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected