diff options
-rw-r--r-- | lib/libkse/thread/thr_kern.c | 3 | ||||
-rw-r--r-- | lib/libkse/thread/thr_sig.c | 7 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_kern.c | 3 | ||||
-rw-r--r-- | lib/libpthread/thread/thr_sig.c | 7 |
4 files changed, 12 insertions, 8 deletions
diff --git a/lib/libkse/thread/thr_kern.c b/lib/libkse/thread/thr_kern.c index 717a766..9a17ead 100644 --- a/lib/libkse/thread/thr_kern.c +++ b/lib/libkse/thread/thr_kern.c @@ -321,10 +321,11 @@ _kse_single_thread(struct pthread *curthread) _kse_initial = NULL; _libpthread_init(curthread); #else + if (__isthreaded) + _thr_signal_deinit(); _ksd_readandclear_tmbx(); __isthreaded = 0; active_threads = 0; - _thr_signal_deinit(); #endif } diff --git a/lib/libkse/thread/thr_sig.c b/lib/libkse/thread/thr_sig.c index 2800cc7..6e95cdd 100644 --- a/lib/libkse/thread/thr_sig.c +++ b/lib/libkse/thread/thr_sig.c @@ -984,12 +984,13 @@ _thr_signal_init(void) void _thr_signal_deinit(void) { - sigset_t tmpmask, oldmask; + struct pthread *curthread = _get_curthread(); + sigset_t tmpmask; int i; SIGFILLSET(tmpmask); SIG_CANTMASK(tmpmask); - __sys_sigprocmask(SIG_SETMASK, &tmpmask, &oldmask); + __sys_sigprocmask(SIG_SETMASK, &tmpmask, NULL); /* Enter a loop to get the existing signal status: */ for (i = 1; i <= _SIG_MAXSIG; i++) { /* Check for signals which cannot be trapped: */ @@ -1005,6 +1006,6 @@ _thr_signal_deinit(void) PANIC("Cannot set signal handler info"); } } - __sys_sigprocmask(SIG_SETMASK, &oldmask, NULL); + __sys_sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL); } diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c index 717a766..9a17ead 100644 --- a/lib/libpthread/thread/thr_kern.c +++ b/lib/libpthread/thread/thr_kern.c @@ -321,10 +321,11 @@ _kse_single_thread(struct pthread *curthread) _kse_initial = NULL; _libpthread_init(curthread); #else + if (__isthreaded) + _thr_signal_deinit(); _ksd_readandclear_tmbx(); __isthreaded = 0; active_threads = 0; - _thr_signal_deinit(); #endif } diff --git a/lib/libpthread/thread/thr_sig.c b/lib/libpthread/thread/thr_sig.c index 2800cc7..6e95cdd 100644 --- a/lib/libpthread/thread/thr_sig.c +++ b/lib/libpthread/thread/thr_sig.c @@ -984,12 +984,13 @@ _thr_signal_init(void) void _thr_signal_deinit(void) { - sigset_t tmpmask, oldmask; + struct pthread *curthread = _get_curthread(); + sigset_t tmpmask; int i; SIGFILLSET(tmpmask); SIG_CANTMASK(tmpmask); - __sys_sigprocmask(SIG_SETMASK, &tmpmask, &oldmask); + __sys_sigprocmask(SIG_SETMASK, &tmpmask, NULL); /* Enter a loop to get the existing signal status: */ for (i = 1; i <= _SIG_MAXSIG; i++) { /* Check for signals which cannot be trapped: */ @@ -1005,6 +1006,6 @@ _thr_signal_deinit(void) PANIC("Cannot set signal handler info"); } } - __sys_sigprocmask(SIG_SETMASK, &oldmask, NULL); + __sys_sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL); } |