summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/sapi/src/debug.c')
-rw-r--r--cpukit/sapi/src/debug.c21
1 files changed, 8 insertions, 13 deletions
diff --git a/cpukit/sapi/src/debug.c b/cpukit/sapi/src/debug.c
index f24bd3a757..f886f3aed8 100644
--- a/cpukit/sapi/src/debug.c
+++ b/cpukit/sapi/src/debug.c
@@ -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
)