diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-11 23:51:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-11 23:51:27 +0000 |
commit | 666de6c9443a3cb335902ca17be5d67e2bdadcb9 (patch) | |
tree | ce018556d5332681c850c282eaf5cb072677d99d | |
parent | 10b993205da2ae921590892686872b5bc3aa4825 (diff) |
Use splhigh() instead of splimp() in cpu_exit. [similar fix as done on mvme88k]
-rw-r--r-- | sys/arch/mvme68k/mvme68k/vm_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/mvme68k/vm_machdep.c b/sys/arch/mvme68k/mvme68k/vm_machdep.c index a56f6880689..61935a3e1c2 100644 --- a/sys/arch/mvme68k/mvme68k/vm_machdep.c +++ b/sys/arch/mvme68k/mvme68k/vm_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_machdep.c,v 1.37 2003/06/02 23:27:51 millert Exp $ */ +/* $OpenBSD: vm_machdep.c,v 1.38 2004/01/11 23:51:26 miod Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -126,7 +126,7 @@ cpu_exit(p) struct proc *p; { - (void) splimp(); + splhigh(); uvmexp.swtch++; switch_exit(p); /* NOTREACHED */ |