From af41b353233d069060ee2cc639f54f61291b031f Mon Sep 17 00:00:00 2001 From: "John Hodge (sonata)" Date: Sun, 11 Aug 2013 22:54:49 +0800 Subject: [PATCH] Kernel/debug - Enabled vterm traces, removed threads from panic --- KernelLand/Kernel/debug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KernelLand/Kernel/debug.c b/KernelLand/Kernel/debug.c index c9a29647..7e8acba7 100644 --- a/KernelLand/Kernel/debug.c +++ b/KernelLand/Kernel/debug.c @@ -7,7 +7,7 @@ #define DEBUG_MAX_LINE_LEN 256 #define LOCK_DEBUG_OUTPUT 1 // Avoid interleaving of output lines? -#define TRACE_TO_KTERM 0 // Send ENTER/DEBUG/LEAVE to debug? +#define TRACE_TO_KTERM 1 // Send ENTER/DEBUG/LEAVE to debug? // === IMPORTS === extern void Threads_Dump(void); @@ -250,8 +250,8 @@ void Panic(const char *Fmt, ...) Debug_Putchar('\r'); Debug_Putchar('\n'); - Threads_Dump(); - Heap_Dump(); + //Threads_Dump(); + //Heap_Dump(); for(;;) ; } -- 2.20.1