From d794738fd883fb25c77cf6732bcccaada6fae801 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 5 Aug 2012 17:00:07 +0200 Subject: [PATCH] Don't log threads initialization --- src/lib/empthread/ntthread.c | 1 - src/lib/empthread/pthread.c | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lib/empthread/ntthread.c b/src/lib/empthread/ntthread.c index 4e008950..a5878d44 100644 --- a/src/lib/empthread/ntthread.c +++ b/src/lib/empthread/ntthread.c @@ -397,7 +397,6 @@ empth_init(void **ctx_ptr, int flags) /* Make this the running thread. */ loc_RunThisThread(NULL); - logerror("NT pthreads initialized"); return 0; } diff --git a/src/lib/empthread/pthread.c b/src/lib/empthread/pthread.c index ed0f0e43..ead01197 100644 --- a/src/lib/empthread/pthread.c +++ b/src/lib/empthread/pthread.c @@ -172,7 +172,6 @@ empth_init(void **ctx_ptr, int flags) ctx->wakeup = 0; pthread_setspecific(ctx_key, ctx); pthread_mutex_lock(&mtx_ctxsw); - logerror("pthreads initialized"); return 0; }