From 486ae2b76adc3e27df065ce91e44232f16b15548 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 31 Mar 2018 00:25:34 +0100 Subject: [PATCH] process: turn off some debug --- Kernel/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/process.c b/Kernel/process.c index adda2c49..6728bed6 100644 --- a/Kernel/process.c +++ b/Kernel/process.c @@ -1,5 +1,5 @@ #undef DEBUG_SYSCALL /* turn this on to enable syscall tracing */ -#define DEBUG_SLEEP /* turn this on to trace sleep/wakeup activity */ +#undef DEBUG_SLEEP /* turn this on to trace sleep/wakeup activity */ #undef DEBUGHARDER /* report calls to wakeup() that lead nowhere */ #undef DEBUGREALLYHARD /* turn on getproc dumping */ #undef DEBUG_PREEMPT /* debug pre-emption */ -- 2.34.1