summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-04 06:17:36 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 09:08:22 +0200
commit84dc9dfb24409ef16280c8e6d0d013336517ea15 (patch)
treeb30cf82b3b781722b798782e2ba530f389c3c365 /cpukit/score/include/rtems/score/thread.h
parentscore: Add node map to _RBTree_Find_inline() (diff)
downloadrtems-84dc9dfb24409ef16280c8e6d0d013336517ea15.tar.bz2
score: Use red-black tree for active MP proxies
Update #2555.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/thread.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 7bb65e418c..d9f1eb2d6d 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -431,8 +431,10 @@ typedef struct {
*/
Objects_Id thread_queue_id;
- /** This field is used to manage the set of proxies in the system. */
- Chain_Node Active;
+ /**
+ * @brief This field is used to manage the set of active proxies in the system.
+ */
+ RBTree_Node Active;
/**
* @brief Provide thread queue heads for this thread proxy.