sapi misc: Clean up Doxygen GCI task #1

http://www.google-melange.com/gci/task/view/google/gci2012/8011204
This commit is contained in:
Christopher Kerl
2012-12-07 09:49:54 -05:00
committed by Gedare Bloom
parent 80232ee7a4
commit 4c98a3ea29
26 changed files with 273 additions and 222 deletions
+8 -13
View File
@@ -1,3 +1,11 @@
/**
* @file
*
* @brief Debug Manager
*
* @ingroup ClassicDebug
*/
/*
* Debug Manager
*
@@ -16,18 +24,11 @@
#include <rtems/system.h>
#include <rtems/debug.h>
/*
*
* _Debug_Manager_initialization
*/
void _Debug_Manager_initialization( void )
{
rtems_debug_disable( RTEMS_DEBUG_ALL_MASK );
}
/*
* rtems_debug_enable
*/
void rtems_debug_enable (
rtems_debug_control to_be_enabled
)
@@ -35,9 +36,6 @@ void rtems_debug_enable (
_Debug_Level |= to_be_enabled;
}
/*
* rtems_debug_disable
*/
void rtems_debug_disable (
rtems_debug_control to_be_disabled
)
@@ -45,9 +43,6 @@ void rtems_debug_disable (
_Debug_Level &= ~to_be_disabled;
}
/*
* rtems_debug_is_enabled
*/
bool rtems_debug_is_enabled(
rtems_debug_control level
)