From 52adc808422cf415027c07c54910086227bcb973 Mon Sep 17 00:00:00 2001 From: Alex Ivanov Date: Sun, 2 Dec 2012 10:03:09 -0600 Subject: score misc: Clean up Doxygen #12 (GCI 2012) This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/8025203 --- cpukit/rtems/src/intrbody.c | 26 +++++++------------------- 1 file changed, 7 insertions(+), 19 deletions(-) (limited to 'cpukit/rtems/src/intrbody.c') diff --git a/cpukit/rtems/src/intrbody.c b/cpukit/rtems/src/intrbody.c index 780b59836c..237a0a3a78 100644 --- a/cpukit/rtems/src/intrbody.c +++ b/cpukit/rtems/src/intrbody.c @@ -1,7 +1,11 @@ -/* - * Bodies for Inlined Interrupt Manager Routines - * +/** + * @file * + * @brief RTEMS Interrupt Support + * @ingroup ClassicINTR + */ + +/* * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * @@ -19,10 +23,6 @@ #include #include -/* - * Real body for rtems_interrupt_disable - */ - #undef rtems_interrupt_disable rtems_interrupt_level rtems_interrupt_disable( void ) @@ -34,10 +34,6 @@ rtems_interrupt_level rtems_interrupt_disable( void ) return previous_level; } -/* - * Real body for rtems_interrupt_enable - */ - #undef rtems_interrupt_enable void rtems_interrupt_enable( @@ -47,10 +43,6 @@ void rtems_interrupt_enable( _ISR_Enable( previous_level ); } -/* - * Real body for rtems_interrupt_flash - */ - #undef rtems_interrupt_flash void rtems_interrupt_flash( @@ -60,10 +52,6 @@ void rtems_interrupt_flash( _ISR_Flash( previous_level ); } -/* - * Real body for rtems_interrupt_is_in_progress - */ - #undef rtems_interrupt_is_in_progress bool rtems_interrupt_is_in_progress( void ) -- cgit v1.2.3