mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 17:00:44 +08:00
sapi misc: Clean up Doxygen GCI task #1
http://www.google-melange.com/gci/task/view/google/gci2012/8011204
This commit is contained in:
committed by
Gedare Bloom
parent
80232ee7a4
commit
4c98a3ea29
+8
-13
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user