aboutsummaryrefslogtreecommitdiffstats
path: root/src/chdebug.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-20 16:26:48 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-20 16:26:48 +0000
commit22e22db0161126d1c58a07e2323662efc18d6c86 (patch)
treee59efd65935cdb9d1358a598925a0a3fa5ace5fd /src/chdebug.c
parentb1d77bf4bc7fb6e89b5280d99f401caa50c8a0d8 (diff)
downloadChibiOS-22e22db0161126d1c58a07e2323662efc18d6c86.tar.gz
ChibiOS-22e22db0161126d1c58a07e2323662efc18d6c86.tar.bz2
ChibiOS-22e22db0161126d1c58a07e2323662efc18d6c86.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@649 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chdebug.c')
-rw-r--r--src/chdebug.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/chdebug.c b/src/chdebug.c
index 56edd2a0d..60bbf49ef 100644
--- a/src/chdebug.c
+++ b/src/chdebug.c
@@ -24,7 +24,7 @@
char *panicmsg;
/**
- * Debug subsystem initialization.
+ * @brief Debug subsystem initialization.
*/
void chDbgInit(void) {
@@ -35,7 +35,9 @@ void chDbgInit(void) {
}
/**
- * Prints a panic message on the console/debugger and then halts the system.
+ * @brief Prints a panic message on the console/debugger and then halts the
+ * system.
+ *
* @param msg the pointer to the message string
*/
void chDbgPanic(char *msg) {
@@ -48,12 +50,13 @@ void chDbgPanic(char *msg) {
#ifdef CH_USE_TRACE
/**
- * Public trace buffer.
+ * @brief Public trace buffer.
*/
TraceBuffer dbgtb;
/**
- * Inserts in the circular debug trace buffer a context switch record.
+ * @brief Inserts in the circular debug trace buffer a context switch record.
+ *
* @param otp the thread being switched out
* @param ntp the thread to be resumed
*/