diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-22 00:36:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-22 00:36:57 +0000 |
commit | 101edd3f3187e38542b6dc380bb9134203c065f3 (patch) | |
tree | cf1e36f4233edd36e37aa05a7b1997945f4da90b /linuxthreads/manager.c | |
parent | bafb8ee92fbb5937357d53b8b9275c99e9da1cfe (diff) | |
download | glibc-101edd3f3187e38542b6dc380bb9134203c065f3.tar glibc-101edd3f3187e38542b6dc380bb9134203c065f3.tar.gz glibc-101edd3f3187e38542b6dc380bb9134203c065f3.tar.bz2 glibc-101edd3f3187e38542b6dc380bb9134203c065f3.zip |
Update.
* nscd/connections.c (nscd_run): Pretty print.
* elf/dl-runtime.c: Include stdlib.h for alloca prototype.
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r-- | linuxthreads/manager.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index 21a692847f..4aa598bb9e 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -115,6 +115,8 @@ int __pthread_manager(void *arg) sigfillset(&mask); sigdelset(&mask, __pthread_sig_cancel); /* for thread termination */ sigdelset(&mask, SIGTRAP); /* for debugging purposes */ + if (__pthread_threads_debug && __pthread_sig_debug > 0) + sigdelset(&mask, __pthread_sig_debug); sigprocmask(SIG_SETMASK, &mask, NULL); /* Raise our priority to match that of main thread */ __pthread_manager_adjust_prio(__pthread_main_thread->p_priority); |