Changes in kernel/arch/sparc64/src/trap/exception.c [ba50a34:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/trap/exception.c
rba50a34 ra000878c 46 46 void dump_istate(istate_t *istate) 47 47 { 48 char *tpcs, *tnpcs; 49 50 tpcs = symtab_fmt_name_lookup(istate->tpc); 51 tnpcs = symtab_fmt_name_lookup(istate->tnpc); 52 48 const char *tpcs = symtab_fmt_name_lookup(istate->tpc); 49 const char *tnpcs = symtab_fmt_name_lookup(istate->tnpc); 50 53 51 printf("TSTATE=%#" PRIx64 "\n", istate->tstate); 54 52 printf("TPC=%#" PRIx64 " (%s)\n", istate->tpc, tpcs); … … 162 160 fault_if_from_uspace(istate, "%s.", __func__); 163 161 dump_istate(istate); 164 //MH 165 // dump_sfsr_and_sfar(); 162 describe_dmmu_fault(); 166 163 panic("%s.", __func__); 167 164 }
Note:
See TracChangeset
for help on using the changeset viewer.