Documentation fixes to chThdCreateI().
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2204 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ae99c722b2
commit
012564866f
|
@ -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,
|
* @details The new thread is initialized but not inserted in the ready list,
|
||||||
* the initial state is @p THD_STATE_SUSPENDED.
|
* the initial state is @p THD_STATE_SUSPENDED.
|
||||||
* @post The initialized thread can be subsequently started by invoking
|
* @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
|
* @note A thread can terminate by calling @p chThdExit() or by simply
|
||||||
* returning from its main function.
|
* returning from its main function.
|
||||||
* @note Threads created using this function do not obey to the
|
* @note Threads created using this function do not obey to the
|
||||||
|
|
Loading…
Reference in New Issue