diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2002-05-29 23:44:32 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2002-05-29 23:44:32 +0000 |
| commit | 628855e758dceb86dbaaffdf6d1733d36f610596 (patch) | |
| tree | 1bf88581a378e6244805a532f43ad6950e1168fc /sys/kern/kern_sig.c | |
| parent | ece450c42ffeb649b4393b9957dc3141186201c6 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_sig.c')
| -rw-r--r-- | sys/kern/kern_sig.c | 6 |
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 |
