1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

doc: add missing information about thread_create

This commit is contained in:
Oleg Hahm 2016-04-21 14:38:13 +02:00
parent f6e9a789ed
commit 435685cf4a

View File

@ -200,7 +200,8 @@ struct _thread {
*
* Creating a new thread is done in two steps:
* 1. the new thread's stack is initialized depending on the platform
* 2. the new thread is added to the scheduler to be run
* 2. the new thread is added to the scheduler and the scheduler is run (if not
* indicated otherwise)
*
* As RIOT is using a fixed priority scheduling algorithm, threads are
* scheduled based on their priority. The priority is fixed for every thread