1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #4357 from OlegHahm/assert_WARNER

core: make assertions easier to spot
This commit is contained in:
Cenk Gündoğan 2015-11-27 23:01:11 +01:00
commit acd7728dea

View File

@ -35,7 +35,7 @@
#include "ps.h"
#endif
const char assert_crash_message[] = "Failed assertion.";
const char assert_crash_message[] = "FAILED ASSERTION.";
/* flag preventing "recursive crash printing loop" */
static int crashed = 0;
@ -53,8 +53,9 @@ NORETURN void core_panic(core_panic_t crash_code, const char *message)
cpu_print_last_instruction();
}
#endif
puts("*** RIOT kernel panic");
puts("*** RIOT kernel panic:");
puts(message);
puts("");
#ifdef DEVELHELP
#ifdef MODULE_PS
ps();