diff options
Diffstat (limited to 'lib/libpthread/thread/thr_sigaction.c')
-rw-r--r-- | lib/libpthread/thread/thr_sigaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_sigaction.c b/lib/libpthread/thread/thr_sigaction.c index 3538f27..40f3850 100644 --- a/lib/libpthread/thread/thr_sigaction.c +++ b/lib/libpthread/thread/thr_sigaction.c @@ -75,7 +75,7 @@ sigaction(int sig, const struct sigaction * act, struct sigaction * oact) sig != SIGINFO) { /* Initialise the global signal action structure: */ gact.sa_mask = act->sa_mask; - gact.sa_flags = act->sa_flags | SA_RESTART; + gact.sa_flags = 0; /* * Check if the signal handler is being set to |