- exact magic values for entered/nonentered states in recursive enter check

- read_*() functions to read segment selector values
 - decode loaded segments on panic
This commit is contained in:
Ben Gras
2009-10-03 12:17:46 +00:00
parent fe35879325
commit 6bd3002f06
4 changed files with 47 additions and 6 deletions

View File

@@ -48,6 +48,12 @@ if (minix_panicing++) {
kprintf("\n");
}
printseg("cs: ", 1, NULL, read_cs());
printseg("ds: ", 0, NULL, read_ds());
if(read_ds() != read_ss()) {
printseg("ss: ", 0, NULL, read_ss());
}
kprintf("kernel: ");
util_stacktrace();