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