use HALT instead of NOP

This commit is contained in:
Stefan Lankes 2011-04-08 15:55:49 +02:00
parent 1ff9c397a9
commit c43efee104

View file

@ -104,7 +104,7 @@ static void NORETURN do_exit(int arg) {
kputs("Kernel panic: scheduler found no valid task\n");
while(1) {
NOP8;
HALT;
}
}