diff options
Diffstat (limited to 'src/server/threadpool.c')
| -rw-r--r-- | src/server/threadpool.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/threadpool.c b/src/server/threadpool.c index fd90944..2d621c5 100644 --- a/src/server/threadpool.c +++ b/src/server/threadpool.c @@ -72,7 +72,6 @@ bool threadpool_run(void *(*startRoutine)(void *), void *arg) free( entry ); return false; } - printf( "[DEBUG] Thread created!\n" ); } entry->next = NULL; entry->startRoutine = startRoutine; @@ -125,7 +124,6 @@ static void *threadpool_worker(void *entryPtr) } signal_close( entry->signalFd ); free( entry ); - printf(" [DEBUG] Thread killed!\n" ); return NULL; } |
