Changeset 667c8a0 in rtems
- Timestamp:
- 06/15/00 19:27:56 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a3726b1
- Parents:
- 10d8a60
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/shared/src/cache.c
r10d8a60 r667c8a0 61 61 } 62 62 63 void _CPU_cache_enable_inst (63 void _CPU_cache_enable_instruction ( 64 64 void ) 65 65 { … … 70 70 } 71 71 72 void _CPU_cache_disable_inst (72 void _CPU_cache_disable_instruction ( 73 73 void ) 74 74 { … … 79 79 } 80 80 81 #elif ( defined(mp c860) || defined(mpc821) )81 #elif ( defined(mpx8xx) || defined(mpc860) || defined(mpc821) ) 82 82 83 83 #define mtspr(_spr,_reg) \ … … 121 121 } 122 122 123 void _CPU_cache_invalidate_1_inst _line(123 void _CPU_cache_invalidate_1_instruction_line( 124 124 const void * _address ) 125 125 { … … 128 128 } 129 129 130 void _CPU_cache_invalidate_entire_inst ( void ) {}131 void _CPU_cache_freeze_inst ( void ) {}132 void _CPU_cache_unfreeze_inst ( void ) {}130 void _CPU_cache_invalidate_entire_instruction ( void ) {} 131 void _CPU_cache_freeze_instruction ( void ) {} 132 void _CPU_cache_unfreeze_instruction ( void ) {} 133 133 134 void _CPU_cache_enable_inst ( void )134 void _CPU_cache_enable_instruction ( void ) 135 135 { 136 136 unsigned32 r1; … … 140 140 } 141 141 142 void _CPU_cache_disable_inst ( void )142 void _CPU_cache_disable_instruction ( void ) 143 143 { 144 144 unsigned32 r1;
Note: See TracChangeset
for help on using the changeset viewer.