summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-01 20:29:52 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-01 20:29:52 +0000
commitfbb32ad9b6a4b6cffea1c5b4292b18c72cdadaf6 (patch)
tree0e3c04e3e9141adb9f9d47329c6ff46d6e5a5335 /libpthread
parent513720b73b403c3c9aca3f25c085422f4132c292 (diff)
on Bernd's request, remove commented-out code snippets
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/linuxthreads.old/pthread.c6
-rw-r--r--libpthread/linuxthreads.old/signals.c2
-rw-r--r--libpthread/linuxthreads/pthread.c8
3 files changed, 1 insertions, 15 deletions
diff --git a/libpthread/linuxthreads.old/pthread.c b/libpthread/linuxthreads.old/pthread.c
index c13c63208..391527e62 100644
--- a/libpthread/linuxthreads.old/pthread.c
+++ b/libpthread/linuxthreads.old/pthread.c
@@ -473,17 +473,13 @@ static void pthread_initialize(void)
will be inherited by all other threads. */
memset(&sa, 0, sizeof(sa));
sa.sa_handler = pthread_handle_sigrestart;
- /* __sigemptyset(&sa.sa_mask); */
- /* 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) {
sa.sa_handler = pthread_handle_sigdebug;
__sigemptyset(&sa.sa_mask);
- /* sa.sa_flags = 0; */
__libc_sigaction(__pthread_sig_debug, &sa, NULL);
}
/* Initially, block __pthread_sig_restart. Will be unblocked on demand. */
@@ -930,8 +926,6 @@ void __pthread_kill_other_threads_np(void)
implementation uses since this would be passed to the new
process. */
memset(&sa, 0, sizeof(sa));
- /*__sigemptyset(&sa.sa_mask);*/
- /*sa.sa_flags = 0;*/
if (SIG_DFL) /* if it's constant zero, it's already done */
sa.sa_handler = SIG_DFL;
__libc_sigaction(__pthread_sig_restart, &sa, NULL);
diff --git a/libpthread/linuxthreads.old/signals.c b/libpthread/linuxthreads.old/signals.c
index 90655f8c1..2a451f3d2 100644
--- a/libpthread/linuxthreads.old/signals.c
+++ b/libpthread/linuxthreads.old/signals.c
@@ -209,8 +209,6 @@ int sigwait(const sigset_t * set, int * sig)
sighandler[s].old == (arch_sighandler_t) SIG_IGN) {
memset(&sa, 0, sizeof(sa));
sa.sa_handler = pthread_null_sighandler;
- /* __sigemptyset(&sa.sa_mask); */
- /* sa.sa_flags = 0; */
sigaction(s, &sa, NULL);
}
}
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c
index 8cc9916cf..7f4f86b46 100644
--- a/libpthread/linuxthreads/pthread.c
+++ b/libpthread/linuxthreads/pthread.c
@@ -563,17 +563,13 @@ static void pthread_initialize(void)
will be inherited by all other threads. */
memset(&sa, 0, sizeof(sa));
sa.sa_handler = pthread_handle_sigrestart;
- /* __sigemptyset(&sa.sa_mask); */
- /* 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) {
sa.sa_handler = pthread_handle_sigdebug;
__sigemptyset(&sa.sa_mask);
- /* sa.sa_flags = 0; */
__libc_sigaction(__pthread_sig_debug, &sa, NULL);
}
/* Initially, block __pthread_sig_restart. Will be unblocked on demand. */
@@ -1153,9 +1149,7 @@ void __pthread_kill_other_threads_np(void)
implementation uses since this would be passed to the new
process. */
memset(&sa, 0, sizeof(sa));
- /*__sigemptyset(&sa.sa_mask);*/
- /*sa.sa_flags = 0;*/
- if (SIG_DFL) /* if it's constant zero, it's already done too */
+ if (SIG_DFL) /* if it's constant zero, it's already done */
sa.sa_handler = SIG_DFL;
__libc_sigaction(__pthread_sig_restart, &sa, NULL);
__libc_sigaction(__pthread_sig_cancel, &sa, NULL);