From 435685cf4a059a9b12452721b1340766c8bcf069 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Thu, 21 Apr 2016 14:38:13 +0200 Subject: [PATCH] doc: add missing information about thread_create --- core/include/thread.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/include/thread.h b/core/include/thread.h index ad32ee1b2..ebf597687 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -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