From 012564866f8668143b4e35a5e50939af1c5374ae Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 26 Sep 2010 10:10:18 +0000 Subject: [PATCH] Documentation fixes to chThdCreateI(). git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2204 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/src/chthreads.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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