diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-01 12:25:51 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-01 12:25:51 +0100 |
commit | 089110af9313af877337efdec8eca8b1822439b8 (patch) | |
tree | 710364a450304d012e8fbb526934f5e0b8d04292 | |
parent | 276b6a43729df3c3e830393ae7d5e342b06bafac (diff) | |
download | serenity-089110af9313af877337efdec8eca8b1822439b8.zip |
LibPthread: Disable debug spam by default
-rw-r--r-- | Libraries/LibPthread/pthread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 <time.h> #include <unistd.h> -#define PTHREAD_DEBUG +//#define PTHREAD_DEBUG namespace { using PthreadAttrImpl = Syscall::SC_create_thread_params; |