View | Details | Raw Unified | Return to bug 24632 | Differences between
and this patch

Collapse All | Expand All

(-)uthread/uthread_init.c.orig Thu Nov 16 22:21:50 2000 (-1 / +1 lines)
Lines 271-279 Link Here
271
271
272
               /* Initialise the global signal action structure: */
272
               /* Initialise the global signal action structure: */
273
               sigfillset(&act.sa_mask);
273
               sigfillset(&act.sa_mask);
274
               act.sa_handler = (void (*) ()) _thread_sig_handler;
274
               act.sa_handler = (void (*) ()) _thread_sig_handler;
275
               act.sa_flags = SA_SIGINFO | SA_ONSTACK | SA_RESTART;
275
               act.sa_flags = SA_SIGINFO | SA_ONSTACK;
276
276
277
               /* Clear pending signals for the process: */
277
               /* Clear pending signals for the process: */
278
               sigemptyset(&_process_sigpending);
278
               sigemptyset(&_process_sigpending);
279
279
(-)uthread/uthread_sigaction.c.orig Fri Nov 10 01:46:04 2000 (-1 / +1 lines)
Lines 79-87 Link Here
79
                        * by other signals.  Always request the POSIX signal
79
                        * by other signals.  Always request the POSIX signal
80
                        * handler arguments.
80
                        * handler arguments.
81
                        */
81
                        */
82
                       sigfillset(&gact.sa_mask);
82
                       sigfillset(&gact.sa_mask);
83
                       gact.sa_flags = SA_SIGINFO | SA_ONSTACK | SA_RESTART;
83
                       gact.sa_flags = SA_SIGINFO | SA_ONSTACK;
84
84
85
                       /*
85
                       /*
86
                        * Check if the signal handler is being set to
86
                        * Check if the signal handler is being set to
87
                        * the default or ignore handlers:
87
                        * the default or ignore handlers:

Return to bug 24632