提交 491933fa 创建 作者: Nickolai Zeldovich's avatar Nickolai Zeldovich

halt qemu on panic

上级 6012e1aa
...@@ -170,7 +170,12 @@ panic(char *s) ...@@ -170,7 +170,12 @@ panic(char *s)
getcallerpcs(&s, pcs); getcallerpcs(&s, pcs);
for(i=0; i<10; i++) for(i=0; i<10; i++)
cprintf(" %p", pcs[i]); cprintf(" %p", pcs[i]);
cprintf("\n");
panicked = 1; // freeze other CPU panicked = 1; // freeze other CPU
extern void sys_halt();
sys_halt();
for(;;) for(;;)
; ;
} }
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论