Changeset 38de8a5 in mainline for arch/mips/src/mm/tlb.c
- Timestamp:
- 2005-09-09T13:50:54Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b02e5d1
- Parents:
- b0edf3b2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/mm/tlb.c
rb0edf3b2 r38de8a5 38 38 void tlb_refill(struct exception_regdump *pstate) 39 39 { 40 panic("tlb_refill exception\n"); 40 char *symbol = ""; 41 char *sym2 = ""; 42 43 if (THREAD) { 44 char *s = get_symtab_entry(pstate->epc); 45 if (s) 46 symbol = s; 47 s = get_symtab_entry(pstate->ra); 48 if (s) 49 sym2 = s; 50 } 51 panic("%X: tlb_refill exception at %X(%s<-%s)\n", cp0_badvaddr_read(), 52 pstate->epc, symbol,sym2); 41 53 } 42 54
Note:
See TracChangeset
for help on using the changeset viewer.