aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2002-05-29 23:44:32 +0000
committerJulian Elischer <julian@FreeBSD.org>2002-05-29 23:44:32 +0000
commit628855e758dceb86dbaaffdf6d1733d36f610596 (patch)
tree1bf88581a378e6244805a532f43ad6950e1168fc /sys/kern/kern_sig.c
parentece450c42ffeb649b4393b9957dc3141186201c6 (diff)
downloadsrc-628855e758dceb86dbaaffdf6d1733d36f610596.tar.gz
src-628855e758dceb86dbaaffdf6d1733d36f610596.zip
CURSIG() is not a macro so rename it cursig().
Obtained from: KSE tree
Notes
Notes: svn path=/head/; revision=97526
Diffstat (limited to 'sys/kern/kern_sig.c')
-rw-r--r--sys/kern/kern_sig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index 2a57c91ba350..e98eb73d14a0 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -172,7 +172,7 @@ static int sigproptbl[NSIG] = {
* MP SAFE.
*/
int
-CURSIG(struct proc *p)
+cursig(struct proc *p)
{
PROC_LOCK_ASSERT(p, MA_OWNED);
@@ -1530,10 +1530,10 @@ out:
* Stop signals with default action are processed immediately, then cleared;
* they aren't returned. This is checked after each entry to the system for
* a syscall or trap (though this can usually be done without calling issignal
- * by checking the pending signal masks in the CURSIG macro.) The normal call
+ * by checking the pending signal masks in cursig.) The normal call
* sequence is
*
- * while (sig = CURSIG(curproc))
+ * while (sig = cursig(curproc))
* postsig(sig);
*/
int