diff options
author | davidxu <davidxu@FreeBSD.org> | 2013-04-18 05:58:07 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2013-04-18 05:58:07 +0000 |
commit | 56f27563ac5cb714ce9000a6b84cc54f636e6a2e (patch) | |
tree | 31bf9a5cadb03db5cb6e038845c27022ed7f3459 /lib | |
parent | 4144588ba6b4591b2185d02ac40aab988bf7fc8e (diff) | |
download | FreeBSD-src-56f27563ac5cb714ce9000a6b84cc54f636e6a2e.zip FreeBSD-src-56f27563ac5cb714ce9000a6b84cc54f636e6a2e.tar.gz |
Remove debug code.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthr/thread/thr_sig.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_sig.c b/lib/libthr/thread/thr_sig.c index 420d99b..2d66184 100644 --- a/lib/libthr/thread/thr_sig.c +++ b/lib/libthr/thread/thr_sig.c @@ -750,7 +750,6 @@ _swapcontext(ucontext_t *oucp, const ucontext_t *ucp) if (oucp == NULL || ucp == NULL) return (EINVAL); if (SIGISMEMBER(ucp->uc_sigmask, SIGCANCEL)) { - stdout_debug("remove SIGCANCEL\n"); (void) memcpy(&uc, ucp, sizeof(uc)); SIGDELSET(uc.uc_sigmask, SIGCANCEL); ucp = &uc; |