Changeset 1800f717 in rtems
- Timestamp:
- 01/08/01 18:16:51 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 82e2265e
- Parents:
- f8b891d
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/mips/ChangeLog
rf8b891d r1800f717 1 2001-01-08 Joel Sherrill <joel@OARcorp.com> 2 3 * idtcpu.h: Commented out definition of "wait". It was stupid to 4 use such a common word as a macro. 5 * rtems/score/cpu.h (_CPU_ISR_Disable): Fixed for mips ISA 3. 6 * rtems/score/mips.h: Added include of <idtcpu.h>. 7 * rtems/score/mips.h (mips_enable_in_interrupt_mask): Corrected. 8 1 9 2001-01-03 Joel Sherrill <joel@OARcorp.com> 2 10 -
c/src/exec/score/cpu/mips/idtcpu.h
rf8b891d r1800f717 177 177 #endif WAIT 178 178 179 /* Disabled by joel -- horrible overload of common word. 179 180 #ifndef wait 180 181 #define wait .word 0x42000020 181 182 #endif wait 183 */ 182 184 183 185 #endif -
c/src/exec/score/cpu/mips/rtems/score/cpu.h
rf8b891d r1800f717 41 41 #include <rtems/score/mips.h> /* pick up machine definitions */ 42 42 #ifndef ASM 43 #include <idtcpu.h>44 43 #include <rtems/score/mipstypes.h> 45 44 #endif … … 601 600 do { \ 602 601 mips_get_sr( _level ); \ 603 mips_set_sr( (_level) & ~SR_I EC); \602 mips_set_sr( (_level) & ~SR_IMASK ); \ 604 603 } while(0) 605 604 -
c/src/exec/score/cpu/mips/rtems/score/mips.h
rf8b891d r1800f717 17 17 #ifdef __cplusplus 18 18 extern "C" { 19 #endif 20 21 #ifndef ASM 22 #include <idtcpu.h> 19 23 #endif 20 24 … … 90 94 unsigned int _sr; \ 91 95 mips_get_sr( _sr ); \ 92 _sr |= (_mask) | SR_IEC; \96 _sr |= (_mask); \ 93 97 mips_set_sr( _sr ); \ 94 98 } while (0) -
cpukit/score/cpu/mips/ChangeLog
rf8b891d r1800f717 1 2001-01-08 Joel Sherrill <joel@OARcorp.com> 2 3 * idtcpu.h: Commented out definition of "wait". It was stupid to 4 use such a common word as a macro. 5 * rtems/score/cpu.h (_CPU_ISR_Disable): Fixed for mips ISA 3. 6 * rtems/score/mips.h: Added include of <idtcpu.h>. 7 * rtems/score/mips.h (mips_enable_in_interrupt_mask): Corrected. 8 1 9 2001-01-03 Joel Sherrill <joel@OARcorp.com> 2 10 -
cpukit/score/cpu/mips/idtcpu.h
rf8b891d r1800f717 177 177 #endif WAIT 178 178 179 /* Disabled by joel -- horrible overload of common word. 179 180 #ifndef wait 180 181 #define wait .word 0x42000020 181 182 #endif wait 183 */ 182 184 183 185 #endif -
cpukit/score/cpu/mips/rtems/mips/idtcpu.h
rf8b891d r1800f717 177 177 #endif WAIT 178 178 179 /* Disabled by joel -- horrible overload of common word. 179 180 #ifndef wait 180 181 #define wait .word 0x42000020 181 182 #endif wait 183 */ 182 184 183 185 #endif -
cpukit/score/cpu/mips/rtems/score/cpu.h
rf8b891d r1800f717 41 41 #include <rtems/score/mips.h> /* pick up machine definitions */ 42 42 #ifndef ASM 43 #include <idtcpu.h>44 43 #include <rtems/score/mipstypes.h> 45 44 #endif … … 601 600 do { \ 602 601 mips_get_sr( _level ); \ 603 mips_set_sr( (_level) & ~SR_I EC); \602 mips_set_sr( (_level) & ~SR_IMASK ); \ 604 603 } while(0) 605 604 -
cpukit/score/cpu/mips/rtems/score/mips.h
rf8b891d r1800f717 17 17 #ifdef __cplusplus 18 18 extern "C" { 19 #endif 20 21 #ifndef ASM 22 #include <idtcpu.h> 19 23 #endif 20 24 … … 90 94 unsigned int _sr; \ 91 95 mips_get_sr( _sr ); \ 92 _sr |= (_mask) | SR_IEC; \96 _sr |= (_mask); \ 93 97 mips_set_sr( _sr ); \ 94 98 } while (0)
Note: See TracChangeset
for help on using the changeset viewer.