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; }