svn commit: r237455 - stable/9/lib/libthr/thread

George V. Neville-Neil gnn at FreeBSD.org
Fri Jun 22 19:19:59 UTC 2012


Author: gnn
Date: Fri Jun 22 19:19:58 2012
New Revision: 237455
URL: http://svn.freebsd.org/changeset/base/237455

Log:
  MFC: 234424
  
  Set SIGCANCEL to SIGTHR as part of some cleanup of DTrace code.
  
  Reviewed by:	davidxu@

Modified:
  stable/9/lib/libthr/thread/thr_private.h
Directory Properties:
  stable/9/lib/libthr/   (props changed)

Modified: stable/9/lib/libthr/thread/thr_private.h
==============================================================================
--- stable/9/lib/libthr/thread/thr_private.h	Fri Jun 22 19:19:53 2012	(r237454)
+++ stable/9/lib/libthr/thread/thr_private.h	Fri Jun 22 19:19:58 2012	(r237455)
@@ -80,7 +80,7 @@ typedef TAILQ_HEAD(atfork_head, pthread_
 TAILQ_HEAD(mutex_queue, pthread_mutex);
 
 /* Signal to do cancellation */
-#define	SIGCANCEL		32
+#define	SIGCANCEL		SIGTHR
 
 /*
  * Kernel fatal error handler macro.


More information about the svn-src-all mailing list