summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-08 14:07:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-21 08:59:32 +0200
commit266d3835d883f908c0e4cbf547359d683f72dcc4 (patch)
treeab1cfe81a9574d984d39c1d27d88d3032c31a594 /cpukit/score/include/rtems/score/thread.h
parentscore: Add scheduler node table for each thread (diff)
downloadrtems-266d3835d883f908c0e4cbf547359d683f72dcc4.tar.bz2
score: Manage scheduler nodes via thread queues
Update #2556.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/thread.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 17aeacde29..a86d81b4e2 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -287,6 +287,14 @@ typedef struct {
* @brief The processor assigned by the current scheduler.
*/
struct Per_CPU_Control *cpu;
+
+ /**
+ * @brief Scheduler nodes immediately available to the thread by its home
+ * scheduler instance and due to thread queue ownerships.
+ *
+ * This chain is protected by the thread wait lock.
+ */
+ Chain_Control Wait_nodes;
#endif
/**