Don't log threads initialization

This commit is contained in:
Markus Armbruster 2012-08-05 17:00:07 +02:00
parent d068259487
commit d794738fd8
2 changed files with 0 additions and 2 deletions

View file

@ -397,7 +397,6 @@ empth_init(void **ctx_ptr, int flags)
/* Make this the running thread. */ /* Make this the running thread. */
loc_RunThisThread(NULL); loc_RunThisThread(NULL);
logerror("NT pthreads initialized");
return 0; return 0;
} }

View file

@ -172,7 +172,6 @@ empth_init(void **ctx_ptr, int flags)
ctx->wakeup = 0; ctx->wakeup = 0;
pthread_setspecific(ctx_key, ctx); pthread_setspecific(ctx_key, ctx);
pthread_mutex_lock(&mtx_ctxsw); pthread_mutex_lock(&mtx_ctxsw);
logerror("pthreads initialized");
return 0; return 0;
} }