aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-26 10:10:18 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-26 10:10:18 +0000
commit012564866f8668143b4e35a5e50939af1c5374ae (patch)
tree1e6cd3a4d15f3d4d92cf11491a7e9c77dab503ab /os
parentae99c722b2306605d52583ff19ae4a3affe9b55e (diff)
downloadChibiOS-012564866f8668143b4e35a5e50939af1c5374ae.tar.gz
ChibiOS-012564866f8668143b4e35a5e50939af1c5374ae.tar.bz2
ChibiOS-012564866f8668143b4e35a5e50939af1c5374ae.zip
Documentation fixes to chThdCreateI().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2204 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r--os/kernel/src/chthreads.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/kernel/src/chthreads.c b/os/kernel/src/chthreads.c
index 8e7de6fab..06451c18f 100644
--- a/os/kernel/src/chthreads.c
+++ b/os/kernel/src/chthreads.c
@@ -116,7 +116,8 @@ static void memfill(uint8_t *startp, uint8_t *endp, uint8_t v) {
* @details The new thread is initialized but not inserted in the ready list,
* the initial state is @p THD_STATE_SUSPENDED.
* @post The initialized thread can be subsequently started by invoking
- * @p chThdResume().
+ * @p chThdResume(), @p chThdResumeI() or @p chSchWakeupS()
+ * depending on the execution context.
* @note A thread can terminate by calling @p chThdExit() or by simply
* returning from its main function.
* @note Threads created using this function do not obey to the