summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_sigaction.c
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2003-08-18 03:58:29 +0000
committerDavid Xu <davidxu@FreeBSD.org>2003-08-18 03:58:29 +0000
commite81bbed597a0ea8392ded3f1161aa98151c496a5 (patch)
treee6cd1320cfc169c79d0f276a0d69df8a3e83fcd4 /lib/libpthread/thread/thr_sigaction.c
parentda245931e384a52716fc700994e302807a7593e8 (diff)
Notes
Diffstat (limited to 'lib/libpthread/thread/thr_sigaction.c')
-rw-r--r--lib/libpthread/thread/thr_sigaction.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thr_sigaction.c b/lib/libpthread/thread/thr_sigaction.c
index c4f5be8f08b56..ed84c2061ed8a 100644
--- a/lib/libpthread/thread/thr_sigaction.c
+++ b/lib/libpthread/thread/thr_sigaction.c
@@ -52,9 +52,6 @@ _sigaction(int sig, const struct sigaction * act, struct sigaction * oact)
errno = EINVAL;
ret = -1;
} else {
- if (!_kse_isthreaded())
- return __sys_sigaction(sig, act, oact);
-
if (act)
newact = *act;