From 75cddafe47966533578464e08eb7113bab3e7719 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 10 Dec 2002 23:59:36 +0000 Subject: [PATCH] (__pthread_initialize_minimal): Remove unneccesary sigaddset call. --- nptl/init.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/nptl/init.c b/nptl/init.c index de34e21..e3f5111 100644 --- a/nptl/init.c +++ b/nptl/init.c @@ -100,12 +100,6 @@ __attribute ((constructor)) #endif __pthread_initialize_minimal (void) { - struct sigaction sa; - struct rlimit limit; -#ifdef USE_TLS - struct pthread *pd; -#endif - #ifndef SHARED /* Unlike in the dynamically linked case the dynamic linker has not taken care of initializing the TLS data structures. */ @@ -113,7 +107,7 @@ __pthread_initialize_minimal (void) #endif /* Minimal initialization of the thread descriptor. */ - pd = THREAD_SELF; + struct pthread *pd = THREAD_SELF; pd->tid = INTERNAL_SYSCALL (set_tid_address, 1, &pd->tid); THREAD_SETMEM (pd, specific[0], &pd->specific_1stblock[0]); THREAD_SETMEM (pd, user_stack, true); @@ -131,18 +125,17 @@ __pthread_initialize_minimal (void) /* Install the cancellation signal handler. If for some reason we cannot install the handler we do not abort. Maybe we should, but it is only asynchronous cancellation which is affected. */ + struct sigaction sa; sa.sa_handler = sigcancel_handler; sa.sa_flags = 0; - - /* Avoid another cancellation signal when we process one. */ sigemptyset (&sa.sa_mask); - sigaddset (&sa.sa_mask, SIGCANCEL); (void) __libc_sigaction (SIGCANCEL, &sa, NULL); /* Determine the default allowed stack size. This is the size used in case the user does not specify one. */ + struct rlimit limit; if (getrlimit (RLIMIT_STACK, &limit) != 0 || limit.rlim_cur == RLIM_INFINITY) /* The system limit is not usable. Use an architecture-specific -- 2.7.4