aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-26 09:59:46 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-26 09:59:46 +0000
commitae99c722b2306605d52583ff19ae4a3affe9b55e (patch)
tree3105bb86bbae7c58ce0fd67b4348d1f2e43561cb /os/kernel
parentad95e527ec5fe87a695555e9461e07881518e10c (diff)
downloadChibiOS-ae99c722b2306605d52583ff19ae4a3affe9b55e.tar.gz
ChibiOS-ae99c722b2306605d52583ff19ae4a3affe9b55e.tar.bz2
ChibiOS-ae99c722b2306605d52583ff19ae4a3affe9b55e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2202 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/src/chthreads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/src/chthreads.c b/os/kernel/src/chthreads.c
index 60d2397bd..8e7de6fab 100644
--- a/os/kernel/src/chthreads.c
+++ b/os/kernel/src/chthreads.c
@@ -119,7 +119,7 @@ static void memfill(uint8_t *startp, uint8_t *endp, uint8_t v) {
* @p chThdResume().
* @note A thread can terminate by calling @p chThdExit() or by simply
* returning from its main function.
- * Threads created using this function do not obey to the
+ * @note Threads created using this function do not obey to the
* @p CH_DBG_FILL_THREADS debug option because it would keep
* the kernel locked for too much time.
*