aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src/chdebug.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-06 10:55:53 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-06 10:55:53 +0000
commitf17db1931e95f5ebb42f557b6eead2bf1320db5a (patch)
tree0676532b6f3231f6c7343b3f644cdc5282433090 /os/kernel/src/chdebug.c
parent6f7c30adff593e365515898082436f893f2ccb00 (diff)
downloadChibiOS-f17db1931e95f5ebb42f557b6eead2bf1320db5a.tar.gz
ChibiOS-f17db1931e95f5ebb42f557b6eead2bf1320db5a.tar.bz2
ChibiOS-f17db1931e95f5ebb42f557b6eead2bf1320db5a.zip
Reformatted doxygen tags into the kernel sources to make them more readable.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1567 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chdebug.c')
-rw-r--r--os/kernel/src/chdebug.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/os/kernel/src/chdebug.c b/os/kernel/src/chdebug.c
index 4868090b5..8a5b58744 100644
--- a/os/kernel/src/chdebug.c
+++ b/os/kernel/src/chdebug.c
@@ -18,8 +18,9 @@
*/
/**
- * @file chdebug.c
- * @brief ChibiOS/RT Debug code.
+ * @file chdebug.c
+ * @brief ChibiOS/RT Debug code.
+ *
* @addtogroup debug
* @{
*/
@@ -28,12 +29,12 @@
#if CH_DBG_ENABLE_TRACE
/**
- * @brief Public trace buffer.
+ * @brief Public trace buffer.
*/
TraceBuffer trace_buffer;
/**
- * @brief Trace circular buffer subsystem initialization.
+ * @brief Trace circular buffer subsystem initialization.
*/
void trace_init(void) {
@@ -42,10 +43,10 @@ void trace_init(void) {
}
/**
- * @brief Inserts in the circular debug trace buffer a context switch record.
+ * @brief Inserts in the circular debug trace buffer a context switch record.
*
- * @param[in] otp the thread being switched out
- * @param[in] ntp the thread to be switched in
+ * @param[in] otp the thread being switched out
+ * @param[in] ntp the thread to be switched in
*/
void chDbgTrace(Thread *otp, Thread *ntp) {
@@ -60,7 +61,7 @@ void chDbgTrace(Thread *otp, Thread *ntp) {
#if CH_DBG_ENABLE_ASSERTS || CH_DBG_ENABLE_CHECKS || CH_DBG_ENABLE_STACK_CHECK
/**
- * @brief Pointer to the panic message.
+ * @brief Pointer to the panic message.
* @details This pointer is meant to be accessed through the debugger, it is
* written once and then the system is halted. This variable can be
* set to @p NULL if the halt is caused by a stack overflow.
@@ -68,9 +69,9 @@ void chDbgTrace(Thread *otp, Thread *ntp) {
char *panic_msg;
/**
- * @brief Prints a panic message on the console and then halts the system.
+ * @brief Prints a panic message on the console and then halts the system.
*
- * @param[in] msg the pointer to the panic message string
+ * @param[in] msg the pointer to the panic message string
*/
void chDbgPanic(char *msg) {