aboutsummaryrefslogtreecommitdiffstats
path: root/src/chdebug.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-03-11 09:22:59 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-03-11 09:22:59 +0000
commit80a8621ec04e3fa9588ad09cbf0f1b6da1429776 (patch)
tree4e4cc8a942480df8e57312051d6484c155e17502 /src/chdebug.c
parent7dbc6a75678e6e06ec99786eb945d043b64e9721 (diff)
downloadChibiOS-80a8621ec04e3fa9588ad09cbf0f1b6da1429776.tar.gz
ChibiOS-80a8621ec04e3fa9588ad09cbf0f1b6da1429776.tar.bz2
ChibiOS-80a8621ec04e3fa9588ad09cbf0f1b6da1429776.zip
Documentation improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@830 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chdebug.c')
-rw-r--r--src/chdebug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chdebug.c b/src/chdebug.c
index c8dba33e6..dc16a27bc 100644
--- a/src/chdebug.c
+++ b/src/chdebug.c
@@ -44,8 +44,8 @@ void trace_init(void) {
/**
* @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
+ * @param[in] otp the thread being switched out
+ * @param[in] ntp the thread to be resumed
*/
void chDbgTrace(Thread *otp, Thread *ntp) {
@@ -62,14 +62,14 @@ void chDbgTrace(Thread *otp, Thread *ntp) {
/**
* @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.
+ * written once and then the system is halted.
*/
char *panic_msg;
/**
* @brief Prints a panic message on the console and then halts the system.
*
- * @param msg the pointer to the panic message string
+ * @param[in] msg the pointer to the panic message string
*/
void chDbgPanic(char *msg) {