diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-24 04:55:50 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-24 04:55:50 +0000 |
commit | c2f1dd3b9cea80b8de0a20854ed26666f371fdf6 (patch) | |
tree | 263d72879b3cd34a093f99abab4cf31f11f2a1b7 /sys | |
parent | c957e610cada7f760c49473434abe92135e0bd92 (diff) |
splimp -> splhigh
ok martin@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/vax/vax/db_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/db_machdep.c b/sys/arch/vax/vax/db_machdep.c index 444a302d017..cbbf7da741b 100644 --- a/sys/arch/vax/vax/db_machdep.c +++ b/sys/arch/vax/vax/db_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.c,v 1.13 2005/11/06 22:21:33 miod Exp $ */ +/* $OpenBSD: db_machdep.c,v 1.14 2005/11/24 04:55:49 brad Exp $ */ /* $NetBSD: db_machdep.c,v 1.17 1999/06/20 00:58:23 ragge Exp $ */ /* @@ -140,7 +140,7 @@ kdb_trap(frame) /* XXX Should switch to interrupt stack here, if needed. */ - s = splimp(); + s = splhigh(); db_active++; cnpollc(TRUE); db_trap(frame->trap, frame->code); |