diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-01-31 15:35:46 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-01-31 15:35:46 +0000 |
commit | 132f19003af8fd28d30802b1264806dedd6e36b3 (patch) | |
tree | c2aa592bb185cea92cab2e3343aaffbe671d5151 /libpthread/linuxthreads/pthread.c | |
parent | badf6dd685a37f85be05720797cf675c4d58846c (diff) |
Oops, remove extra sigaddset() call. Don't know how that one got there.
Diffstat (limited to 'libpthread/linuxthreads/pthread.c')
-rw-r--r-- | libpthread/linuxthreads/pthread.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index 2615fe724..afc785d14 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -376,7 +376,6 @@ static void pthread_initialize(void) sa.sa_flags = 0; __libc_sigaction(__pthread_sig_restart, &sa, NULL); sa.sa_handler = pthread_handle_sigcancel; - sigaddset(&sa.sa_mask, __pthread_sig_restart); // sa.sa_flags = 0; __libc_sigaction(__pthread_sig_cancel, &sa, NULL); if (__pthread_sig_debug > 0) { |