Changeset 909c6e3 in mainline for arch/mips/src/mm/tlb.c
- Timestamp:
- 2005-09-07T09:44:30Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d246e7e
- Parents:
- 24bd23a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/src/mm/tlb.c
r24bd23a r909c6e3 36 36 #include <symtab.h> 37 37 38 void tlb_refill( void)38 void tlb_refill(struct exception_regdump *pstate) 39 39 { 40 40 panic("tlb_refill exception\n"); 41 41 } 42 42 43 void tlb_invalid( void)43 void tlb_invalid(struct exception_regdump *pstate) 44 44 { 45 45 char *symbol = ""; 46 46 47 47 if (THREAD) { 48 char *s = get_symtab_entry( THREAD->saved_epc);48 char *s = get_symtab_entry(pstate->epc); 49 49 if (s) 50 50 symbol = s; 51 51 } 52 52 panic("%X: TLB exception at %X(%s)\n", cp0_badvaddr_read(), 53 THREAD ? THREAD->saved_epc : 0, symbol);53 pstate->epc, symbol); 54 54 } 55 55
Note:
See TracChangeset
for help on using the changeset viewer.