From 089110af9313af877337efdec8eca8b1822439b8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 1 Feb 2020 12:25:51 +0100 Subject: [PATCH] LibPthread: Disable debug spam by default --- Libraries/LibPthread/pthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibPthread/pthread.cpp b/Libraries/LibPthread/pthread.cpp index e12ea97ba7..edae9f0c6a 100644 --- a/Libraries/LibPthread/pthread.cpp +++ b/Libraries/LibPthread/pthread.cpp @@ -37,7 +37,7 @@ #include #include -#define PTHREAD_DEBUG +//#define PTHREAD_DEBUG namespace { using PthreadAttrImpl = Syscall::SC_create_thread_params;