diff options
-rw-r--r-- | i386/i386/trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/trap.c b/i386/i386/trap.c index e69b3ea8..db4c7026 100644 --- a/i386/i386/trap.c +++ b/i386/i386/trap.c @@ -332,7 +332,7 @@ dump_ss(regs); printf("%s trap", trap_type[type]); else printf("trap %ld", type); - printf(", eip 0x%lx\n", regs->eip); + printf(", eip 0x%lx, code %lx, cr2 %lx\n", regs->eip, code, regs->cr2); #if MACH_TTD if (kttd_enabled && kttd_trap(type, code, regs)) return; |