diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 23:59:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-10 23:59:36 +0000 |
commit | 75cddafe47966533578464e08eb7113bab3e7719 (patch) | |
tree | 2e26d59994f91ea16191f2980a2c92409c3f7fe4 | |
parent | d00453348c0fc8df3b01b65afa89d821cb41c323 (diff) | |
download | glibc-75cddafe47966533578464e08eb7113bab3e7719.tar glibc-75cddafe47966533578464e08eb7113bab3e7719.tar.gz glibc-75cddafe47966533578464e08eb7113bab3e7719.tar.bz2 glibc-75cddafe47966533578464e08eb7113bab3e7719.zip |
(__pthread_initialize_minimal): Remove unneccesary sigaddset call.
-rw-r--r-- | nptl/init.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/nptl/init.c b/nptl/init.c index de34e217f9..e3f51119cf 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 |