summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386/rtems/score/interrupts.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-02-02 15:19:01 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-02-02 15:19:01 -0600
commitdd7b83550dfb73f5ec1b7dec3b21d730779ddeb2 (patch)
tree3db0eac5b55ed5edcf985baed9f19736c931de47 /cpukit/score/cpu/i386/rtems/score/interrupts.h
parentMerge branch 'master' of ssh://git.rtems.org/data/git/rtems (diff)
parentfstests/fsrdwr: Free allocated memory (diff)
downloadrtems-dd7b83550dfb73f5ec1b7dec3b21d730779ddeb2.tar.bz2
Merge branch 'master' of ssh://git.rtems.org/data/git/rtems
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..bed6330781 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,9 +28,11 @@ 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