Changeset 008029d in mainline for arch/sparc64/src/mm/tlb.c
- Timestamp:
- 2006-02-21T23:36:37Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5df72d
- Parents:
- c2942d8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/src/mm/tlb.c
rc2942d8 r008029d 37 37 #include <config.h> 38 38 #include <arch/trap/trap.h> 39 #include <panic.h> 39 40 40 41 /** Initialize ITLB and DTLB. … … 98 99 } 99 100 101 /** ITLB miss handler. */ 102 void fast_instruction_access_mmu_miss(void) 103 { 104 panic("%s\n", __FUNCTION__); 105 } 106 107 /** DTLB miss handler. */ 108 void fast_data_access_mmu_miss(void) 109 { 110 panic("%s\n", __FUNCTION__); 111 } 112 113 /** DTLB protection fault handler. */ 114 void fast_data_access_protection(void) 115 { 116 panic("%s\n", __FUNCTION__); 117 } 118 100 119 /** Print contents of both TLBs. */ 101 120 void tlb_print(void)
Note:
See TracChangeset
for help on using the changeset viewer.