From: Ulrich Drepper Date: Fri, 8 Oct 1999 21:52:41 +0000 (+0000) Subject: (__pthread_manager) [REQ_POST]: Use __new_sem_post directly instead of X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3842bcd3621f1f1db11cc56030889eab6d404935;p=thirdparty%2Fglibc.git (__pthread_manager) [REQ_POST]: Use __new_sem_post directly instead of calling sem_post which should not be necessary but is faster and might help in some case to work around problems. --- diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index f1a58994047..f78e14c55b3 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -156,7 +156,7 @@ int __pthread_manager(void *arg) } break; case REQ_POST: - sem_post(request.req_args.post); + __new_sem_post(request.req_args.post); break; case REQ_DEBUG: /* Make gdb aware of new thread and gdb will restart the