Add a panic() after the swtch() is cpu_exit() just in case, and to shut up

GCC.
This commit is contained in:
mycroft 1993-08-02 23:20:55 +00:00
parent da7f7e95b4
commit 65456d9ca0
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* $Id: vm_machdep.c,v 1.6 1993/07/18 08:23:15 andrew Exp $
* $Id: vm_machdep.c,v 1.7 1993/08/02 23:20:55 mycroft Exp $
*/
/*
@ -172,6 +172,7 @@ cpu_exit(p)
#endif
splclock();
swtch();
panic("cpu_exit: swtch returned");
}
void