diff options
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 2 | ||||
-rw-r--r-- | linuxthreads/pthread.c | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 36e0de47b9..7b3e50e7f6 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,5 +1,7 @@ 2000-08-25 Ulrich Drepper <drepper@redhat.com> + * pthread.c (pthread_exit_process): Move thread_self us inside `if'. + * sysdeps/pthread/pthread.h (PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP): Defined. (PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP: Defined. diff --git a/linuxthreads/pthread.c b/linuxthreads/pthread.c index 646a0049b7..628b0cea17 100644 --- a/linuxthreads/pthread.c +++ b/linuxthreads/pthread.c @@ -1,3 +1,4 @@ + /* Linuxthreads - a simple clone()-based implementation of Posix */ /* threads for Linux. */ /* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */ @@ -724,10 +725,10 @@ weak_alias (__pthread_yield, pthread_yield) static void pthread_exit_process(int retcode, void *arg) { - struct pthread_request request; - pthread_descr self = thread_self(); - if (__builtin_expect (__pthread_manager_request, 0) >= 0) { + struct pthread_request request; + pthread_descr self = thread_self(); + request.req_thread = self; request.req_kind = REQ_PROCESS_EXIT; request.req_args.exit.code = retcode; |