From 602f6da1c0ff4bac2d8dd6ca6cdaa876980f205e Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 10 Jan 2015 00:40:46 +0000 Subject: [PATCH] process.c: turn debug back off in default build --- Kernel/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/process.c b/Kernel/process.c index 68481ba3..1bf022ba 100644 --- a/Kernel/process.c +++ b/Kernel/process.c @@ -1,5 +1,5 @@ -#define DEBUG /* turn this on to enable syscall tracing */ -#define DEBUGHARDER /* report calls to wakeup() that lead nowhere */ +#undef DEBUG /* turn this on to enable syscall tracing */ +#undef DEBUGHARDER /* report calls to wakeup() that lead nowhere */ #undef DEBUGREALLYHARD /* turn on getproc dumping */ #include -- 2.34.1