summaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
diff options
context:
space:
mode:
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