From c3dd7e380ee3ca227730ab6a8daa4e35ad4f004e Mon Sep 17 00:00:00 2001 From: deischen Date: Mon, 29 Jan 2001 03:24:23 +0000 Subject: _exit in libc is now __sys_exit not __sys__exit. Add another check for thread library initialization (jdp, we really need a way to get _thread_init called at program start before any constructors are run). --- lib/libpthread/thread/thr_exit.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/libpthread/thread/thr_exit.c') diff --git a/lib/libpthread/thread/thr_exit.c b/lib/libpthread/thread/thr_exit.c index 42bf025..169aa4f 100644 --- a/lib/libpthread/thread/thr_exit.c +++ b/lib/libpthread/thread/thr_exit.c @@ -43,10 +43,9 @@ #define FLAGS_IN_SCHEDQ \ (PTHREAD_FLAGS_IN_PRIOQ|PTHREAD_FLAGS_IN_WAITQ|PTHREAD_FLAGS_IN_WORKQ) -#pragma weak _exit=__exit #pragma weak pthread_exit=_pthread_exit -void __exit(int status) +void _exit(int status) { int flags; int i; @@ -79,7 +78,7 @@ void __exit(int status) } /* Call the _exit syscall: */ - __sys__exit(status); + __sys_exit(status); } void @@ -104,7 +103,7 @@ _thread_exit(char *fname, int lineno, char *string) #if defined(_PTHREADS_INVARIANTS) abort(); #else - _exit(1); + __sys_exit(1); #endif } -- cgit v1.1