summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_trap.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/subr_trap.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/subr_trap.c')
-rw-r--r--sys/kern/subr_trap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_trap.c b/sys/kern/subr_trap.c
index a5b035a..4a02c85 100644
--- a/sys/kern/subr_trap.c
+++ b/sys/kern/subr_trap.c
@@ -200,7 +200,7 @@ ast(framep)
if (sflag & PS_NEEDSIGCHK) {
mtx_lock(&Giant);
PROC_LOCK(p);
- while ((sig = CURSIG(p)) != 0)
+ while ((sig = cursig(p)) != 0)
postsig(sig);
PROC_UNLOCK(p);
mtx_unlock(&Giant);
OpenPOWER on IntegriCloud