summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386/rtems/score/interrupts.h
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2013-01-02 11:27:31 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2013-01-02 11:27:31 -0600
commitd9e0006dee876a691eb4846f6685d6eef03b64e5 (patch)
treeeb4cc966ba022a9ef65721f863c3108b8174d23a /cpukit/score/cpu/i386/rtems/score/interrupts.h
parentsptests/spintrcritical16: Fix NULL pointer access (diff)
downloadrtems-d9e0006dee876a691eb4846f6685d6eef03b64e5.tar.bz2
score: Doxygen Clean Up Task #5
Diffstat (limited to 'cpukit/score/cpu/i386/rtems/score/interrupts.h')
-rw-r--r--cpukit/score/cpu/i386/rtems/score/interrupts.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/cpukit/score/cpu/i386/rtems/score/interrupts.h b/cpukit/score/cpu/i386/rtems/score/interrupts.h
index 08ad2b16c0..4787bcb663 100644
--- a/cpukit/score/cpu/i386/rtems/score/interrupts.h
+++ b/cpukit/score/cpu/i386/rtems/score/interrupts.h
@@ -1,12 +1,12 @@
/**
- * @file rtems/score/interrupts.h
+ * @file
+ *
+ * @brief Intel I386 Interrupt Macros
+ *
+ * Formerly contained in and extracted from libcpu/i386/cpu.h
*/
/*
- * i386 interrupt macros.
- *
- * Formerly contained in and extracted from libcpu/i386/cpu.h
- *
* COPYRIGHT (c) 1998 valette@crf.canon.fr
*
* The license and distribution terms for this file may be
@@ -28,8 +28,10 @@ typedef void (*rtems_raw_irq_enable) (const struct __rtems_raw_irq_connect_data
typedef void (*rtems_raw_irq_disable) (const struct __rtems_raw_irq_connect_data__*);
typedef int (*rtems_raw_irq_is_enabled) (const struct __rtems_raw_irq_connect_data__*);
-/*
- * Interrupt Level Macros
+/**
+ * @name Interrupt Level Macros
+ *
+ * @{
*/
#define i386_disable_interrupts( _level ) \
@@ -73,5 +75,7 @@ typedef int (*rtems_raw_irq_is_enabled) (const struct __rtems_raw_irq_connect_d
#define _CPU_ISR_Disable( _level ) i386_disable_interrupts( _level )
#define _CPU_ISR_Enable( _level ) i386_enable_interrupts( _level )
+/** @} */
+
#endif
#endif