]> git.pond.sub.org Git - empserver/commitdiff
Don't log threads initialization
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 5 Aug 2012 15:00:07 +0000 (17:00 +0200)
committerMarkus Armbruster <armbru@pond.sub.org>
Sat, 12 Jan 2013 16:57:42 +0000 (17:57 +0100)
src/lib/empthread/ntthread.c
src/lib/empthread/pthread.c

index 4e008950158ca62e36a6e4ef52dee1baac619cdd..a5878d44aec5181f21b4c116e658debec26d60c1 100644 (file)
@@ -397,7 +397,6 @@ empth_init(void **ctx_ptr, int flags)
     /* Make this the running thread. */
     loc_RunThisThread(NULL);
 
     /* Make this the running thread. */
     loc_RunThisThread(NULL);
 
-    logerror("NT pthreads initialized");
     return 0;
 }
 
     return 0;
 }
 
index ed0f0e4344760493847a75be0c9abf8bdd769ad4..ead01197a026a7b82d75e303fbbc9048715ba450 100644 (file)
@@ -172,7 +172,6 @@ empth_init(void **ctx_ptr, int flags)
     ctx->wakeup = 0;
     pthread_setspecific(ctx_key, ctx);
     pthread_mutex_lock(&mtx_ctxsw);
     ctx->wakeup = 0;
     pthread_setspecific(ctx_key, ctx);
     pthread_mutex_lock(&mtx_ctxsw);
-    logerror("pthreads initialized");
     return 0;
 }
 
     return 0;
 }