From: Markus Armbruster Date: Sun, 5 Aug 2012 15:00:07 +0000 (+0200) Subject: Don't log threads initialization X-Git-Tag: v4.3.31~110 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=d794738fd883fb25c77cf6732bcccaada6fae801 Don't log threads initialization --- diff --git a/src/lib/empthread/ntthread.c b/src/lib/empthread/ntthread.c index 4e0089501..a5878d44a 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 ed0f0e434..ead01197a 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; }