diff options
| -rw-r--r-- | sys/sparc64/sparc64/trap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sparc64/sparc64/trap.c b/sys/sparc64/sparc64/trap.c index 357c7ac8e248..4ea297bdc3f8 100644 --- a/sys/sparc64/sparc64/trap.c +++ b/sys/sparc64/sparc64/trap.c @@ -138,12 +138,12 @@ const char *trap_msg[] = { "trap instruction 29", "trap instruction 30", "trap instruction 31", + "fast instruction access mmu miss", + "fast data access mmu miss", "interrupt", "physical address watchpoint", "virtual address watchpoint", "corrected ecc error", - "fast instruction access mmu miss", - "fast data access mmu miss", "spill", "fill", "fill", @@ -193,12 +193,12 @@ const int trap_sig[] = { SIGILL, /* trap instruction 29 */ SIGILL, /* trap instruction 30 */ SIGILL, /* trap instruction 31 */ + SIGSEGV, /* fast instruction access mmu miss */ + SIGSEGV, /* fast data access mmu miss */ -1, /* interrupt */ -1, /* physical address watchpoint */ -1, /* virtual address watchpoint */ -1, /* corrected ecc error */ - SIGSEGV, /* fast instruction access mmu miss */ - SIGSEGV, /* fast data access mmu miss */ SIGILL, /* spill */ SIGILL, /* fill */ SIGILL, /* fill */ |
