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

George V. Neville-Neil gnn at FreeBSD.org
Wed Apr 18 16:29:56 UTC 2012


Author: gnn
Date: Wed Apr 18 16:29:55 2012
New Revision: 234424
URL: http://svn.freebsd.org/changeset/base/234424

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

Modified:
  head/lib/libthr/thread/thr_private.h

Modified: head/lib/libthr/thread/thr_private.h
==============================================================================
--- head/lib/libthr/thread/thr_private.h	Wed Apr 18 15:23:21 2012	(r234423)
+++ head/lib/libthr/thread/thr_private.h	Wed Apr 18 16:29:55 2012	(r234424)
@@ -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