From 9e05eaaf91c2596521e29b90ffa9adf3114c3b93 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Fri, 28 Jan 2011 20:11:32 +0100 Subject: Proper mutex usage, and protecting malloc and sbrk using them. Also showing this into the demo. --- os/src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os/src/init.c') diff --git a/os/src/init.c b/os/src/init.c index 070fac1..4b518ab 100644 --- a/os/src/init.c +++ b/os/src/init.c @@ -20,7 +20,7 @@ void _exit(int return_code) { void _start() { BoardEarlyInit(); BoardConsoleInit(); - BoardConsolePuts("uC-sdk - booting."); + BoardConsolePuts("uC-sdk - booting."); // __sinit(_impure_ptr); __libc_init_array(); BoardLateInit(); -- cgit v1.2.3