diff options
author | David Xu <davidxu@FreeBSD.org> | 2003-08-18 03:58:29 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2003-08-18 03:58:29 +0000 |
commit | e81bbed597a0ea8392ded3f1161aa98151c496a5 (patch) | |
tree | e6cd1320cfc169c79d0f276a0d69df8a3e83fcd4 /lib/libpthread/thread/thr_sigmask.c | |
parent | da245931e384a52716fc700994e302807a7593e8 (diff) |
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_sigmask.c')
-rw-r--r-- | lib/libpthread/thread/thr_sigmask.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thr_sigmask.c b/lib/libpthread/thread/thr_sigmask.c index 635bac28d8e28..15740f409b38a 100644 --- a/lib/libpthread/thread/thr_sigmask.c +++ b/lib/libpthread/thread/thr_sigmask.c @@ -49,9 +49,6 @@ _pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) sigset_t oldset, newset; int ret; - if (! _kse_isthreaded()) - _kse_setthreaded(1); - if (curthread->attr.flags & PTHREAD_SCOPE_SYSTEM) { ret = __sys_sigprocmask(how, set, oset); if (ret != 0) |