summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/intr.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/rtems/include/rtems/rtems/intr.h
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/intr.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/intr.h b/cpukit/rtems/include/rtems/rtems/intr.h
index d2dc654660..10ed1d0657 100644
--- a/cpukit/rtems/include/rtems/rtems/intr.h
+++ b/cpukit/rtems/include/rtems/rtems/intr.h
@@ -32,19 +32,19 @@ typedef ISR_Level rtems_interrupt_level;
* The following type defines the control block used to manage
* the vectors.
*/
-
+
typedef ISR_Vector_number rtems_vector_number;
/*
* Return type for ISR Handler
*/
-
+
typedef void rtems_isr;
/*
* Pointer to an ISR Handler
*/
-
+
typedef rtems_isr ( *rtems_isr_entry )(
rtems_vector_number
);
@@ -88,7 +88,7 @@ rtems_status_code rtems_interrupt_catch(
#define rtems_interrupt_disable( _isr_cookie ) \
_ISR_Disable(_isr_cookie)
-
+
/*
* rtems_interrupt_enable
*
@@ -100,7 +100,7 @@ rtems_status_code rtems_interrupt_catch(
#define rtems_interrupt_enable( _isr_cookie ) \
_ISR_Enable(_isr_cookie)
-
+
/*
* rtems_interrupt_flash
*
@@ -123,7 +123,7 @@ rtems_status_code rtems_interrupt_catch(
* that the caller is an interrupt service routine, NOT a thread. The
* directives available to an interrupt service routine are restricted.
*/
-
+
#define rtems_interrupt_is_in_progress() \
_ISR_Is_in_progress()