summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2002-05-29 23:44:32 +0000
committerjulian <julian@FreeBSD.org>2002-05-29 23:44:32 +0000
commit304195369eee5fe75eac0bdc75ac62baadc09987 (patch)
tree1bf88581a378e6244805a532f43ad6950e1168fc /sys/kern/kern_sig.c
parent2c79ab496afd9e8e7e378873743f141154fe9bed (diff)
downloadFreeBSD-src-304195369eee5fe75eac0bdc75ac62baadc09987.zip
FreeBSD-src-304195369eee5fe75eac0bdc75ac62baadc09987.tar.gz
CURSIG() is not a macro so rename it cursig().
Obtained from: KSE tree
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 2a57c91..e98eb73 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
OpenPOWER on IntegriCloud