summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorChristopher Kerl <zargyyoyo@gmail.com>2012-12-07 09:49:54 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-07 09:49:54 -0500
commit4c98a3ea294f3eb0cbaae4153c47eb45728613ac (patch)
tree897abe1cfe7b6a78859f77810c16a8a24fcd0456 /cpukit/score/include
parentbsps/powerpc: Use explicit compiler options (diff)
downloadrtems-4c98a3ea294f3eb0cbaae4153c47eb45728613ac.tar.bz2
sapi misc: Clean up Doxygen GCI task #1
http://www.google-melange.com/gci/task/view/google/gci2012/8011204
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/debug.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/debug.h b/cpukit/score/include/rtems/debug.h
index 4155775ef2..4087e4ae94 100644
--- a/cpukit/score/include/rtems/debug.h
+++ b/cpukit/score/include/rtems/debug.h
@@ -45,25 +45,27 @@ typedef uint32_t rtems_debug_control;
SCORE_EXTERN rtems_debug_control _Debug_Level;
/**
- * This routine performs the initialization necessary for this manager.
+ * @brief Initialize Debug Manager
*/
void _Debug_Manager_initialization( void );
/**
- * This routine enables the specified types of debug checks.
+ * @brief Enable Debugging
*/
void rtems_debug_enable(
rtems_debug_control to_be_enabled
);
/**
- * This routine disables the specified types of debug checks.
+ * @brief Disable Debugging
*/
void rtems_debug_disable(
rtems_debug_control to_be_disabled
);
/**
+ * @brief Check if Debug is Enabled
+ *
* This routine returns TRUE if the requested debug level is
* enabled, and FALSE otherwise.
*/