diff options
author | gnn <gnn@FreeBSD.org> | 2012-04-18 16:29:55 +0000 |
---|---|---|
committer | gnn <gnn@FreeBSD.org> | 2012-04-18 16:29:55 +0000 |
commit | afbfcbc9fdbdf3ae106ba1b83e56b0154829bd2d (patch) | |
tree | da6767fba7c6a661b7ba508f627bed3fe7cbedd9 /lib/libthr/thread | |
parent | 9da257a75dc40dcb5a0bbc47e3414fbec382be87 (diff) | |
download | FreeBSD-src-afbfcbc9fdbdf3ae106ba1b83e56b0154829bd2d.zip FreeBSD-src-afbfcbc9fdbdf3ae106ba1b83e56b0154829bd2d.tar.gz |
Set SIGCANCEL to SIGTHR as part of some cleanup of DTrace code.
Reviewed by: davidxu@
MFC after: 1 week
Diffstat (limited to 'lib/libthr/thread')
-rw-r--r-- | lib/libthr/thread/thr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 87af318..4469f6b 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -80,7 +80,7 @@ typedef TAILQ_HEAD(atfork_head, pthread_atfork) atfork_head; TAILQ_HEAD(mutex_queue, pthread_mutex); /* Signal to do cancellation */ -#define SIGCANCEL 32 +#define SIGCANCEL SIGTHR /* * Kernel fatal error handler macro. |