svn commit: r249607 - head/lib/libthr/thread

David Xu davidxu at FreeBSD.org
Thu Apr 18 05:58:07 UTC 2013


Author: davidxu
Date: Thu Apr 18 05:58:07 2013
New Revision: 249607
URL: http://svnweb.freebsd.org/changeset/base/249607

Log:
  Remove debug code.

Modified:
  head/lib/libthr/thread/thr_sig.c

Modified: head/lib/libthr/thread/thr_sig.c
==============================================================================
--- head/lib/libthr/thread/thr_sig.c	Thu Apr 18 05:56:00 2013	(r249606)
+++ head/lib/libthr/thread/thr_sig.c	Thu Apr 18 05:58:07 2013	(r249607)
@@ -750,7 +750,6 @@ _swapcontext(ucontext_t *oucp, const uco
 	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;


More information about the svn-src-head mailing list