summaryrefslogtreecommitdiffstats
path: root/c-user
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-14 10:52:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-14 10:52:44 +0200
commit56cccd67f69704213015621b9d414f258673b444 (patch)
tree6f5a340303017e094abb9c6a8cd0df2c01693130 /c-user
parentc-user: Clarify SMP's rtems_get_processor_count. (diff)
downloadrtems-docs-56cccd67f69704213015621b9d414f258673b444.tar.bz2
c-user: Fix task create notes
Diffstat (limited to 'c-user')
-rw-r--r--c-user/task_manager.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/c-user/task_manager.rst b/c-user/task_manager.rst
index 65f2468..426a91f 100644
--- a/c-user/task_manager.rst
+++ b/c-user/task_manager.rst
@@ -644,9 +644,13 @@ DESCRIPTION:
``rtems_task_start``.
NOTES:
- This directive will not cause the calling task to be preempted.
+ This directive may cause the calling task to be preempted.
- Valid task priorities range from a high of 1 to a low of 255.
+ The scheduler of the new task is the scheduler of the executing task at
+ some point during the task creation. The specified task priority must be
+ valid for the selected scheduler.
+
+ The task processor affinity is initialized to the set of online processors.
If the requested stack size is less than the configured minimum stack size,
then RTEMS will use the configured minimum as the stack size for this task.