Changeset 7c39cab in rtems
- Timestamp:
- 03/12/18 19:46:29 (5 years ago)
- Branches:
- 5, master
- Children:
- c0443b4c
- Parents:
- 71c5552f
- git-author:
- Joel Sherrill <joel@…> (03/12/18 19:46:29)
- git-committer:
- Joel Sherrill <joel@…> (03/13/18 14:49:21)
- Location:
- cpukit/score/cpu/i386
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/i386/cpu.c
r71c5552f r7c39cab 199 199 uint32_t level; 200 200 201 #if !defined( RTEMS_PARAVIRT)201 #if !defined(I386_DISABLE_INLINE_ISR_DISABLE_ENABLE) 202 202 i386_get_interrupt_level( level ); 203 203 #else -
cpukit/score/cpu/i386/headers.am
r71c5552f r7c39cab 17 17 include_rtems_score_HEADERS += include/rtems/score/idtr.h 18 18 include_rtems_score_HEADERS += include/rtems/score/interrupts.h 19 include_rtems_score_HEADERS += include/rtems/score/paravirt.h 19 20 include_rtems_score_HEADERS += include/rtems/score/registers.h -
cpukit/score/cpu/i386/include/rtems/score/cpu.h
r71c5552f r7c39cab 29 29 30 30 #include <rtems/score/basedefs.h> 31 #if defined(RTEMS_PARAVIRT) 32 #include <rtems/score/paravirt.h> 33 #endif 31 34 #include <rtems/score/i386.h> 32 35 … … 382 385 */ 383 386 384 #if !defined( RTEMS_PARAVIRT)387 #if !defined(I386_DISABLE_INLINE_ISR_DISABLE_ENABLE) 385 388 #define _CPU_ISR_Disable( _level ) i386_disable_interrupts( _level ) 386 389 -
cpukit/score/cpu/i386/include/rtems/score/interrupts.h
r71c5552f r7c39cab 34 34 */ 35 35 /**@{**/ 36 #if !defined( RTEMS_PARAVIRT)36 #if !defined(I386_DISABLE_INLINE_ISR_DISABLE_ENABLE) 37 37 #define i386_disable_interrupts( _level ) \ 38 38 { \
Note: See TracChangeset
for help on using the changeset viewer.