summaryrefslogtreecommitdiffstats
path: root/c-user/key_concepts.rst
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-02 11:22:59 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-02 11:22:59 +0100
commit3e005fed9a075227058a8c80ce43e26522b573e6 (patch)
tree83b3c5812cdc495dd547825034cdb47bf2bd5f1d /c-user/key_concepts.rst
parentc-user: Add SMP implementation details section (diff)
downloadrtems-docs-3e005fed9a075227058a8c80ce43e26522b573e6.tar.bz2
c-user: Use sphinx glossary support
Terms can be referenced via :term:`XYZ`.
Diffstat (limited to 'c-user/key_concepts.rst')
-rw-r--r--c-user/key_concepts.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/c-user/key_concepts.rst b/c-user/key_concepts.rst
index 6af8067..cd41c7f 100644
--- a/c-user/key_concepts.rst
+++ b/c-user/key_concepts.rst
@@ -359,12 +359,12 @@ Thread Queues
=============
.. index:: thread queues
-In case more than one :ref:`thread <task>` may wait on a synchronization
-object, e.g. a semaphore or a message queue, then the waiting threads are added
-to a data structure called the thread queue. Thread queues are named task wait
-queues in the Classic API. There are two thread queuing disciplines available
-which define the order of the threads on a particular thread queue. Threads
-can wait in FIFO or priority order.
+In case more than one :term:`thread` may wait on a synchronization object, e.g.
+a semaphore or a message queue, then the waiting threads are added to a data
+structure called the thread queue. Thread queues are named task wait queues in
+the Classic API. There are two thread queuing disciplines available which
+define the order of the threads on a particular thread queue. Threads can wait
+in FIFO or priority order.
In uni-processor configurations, the priority queuing discipline just orders
the threads according to their current priority and in FIFO order in case of