summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/rbtreeextract.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-08-24 15:25:33 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-06 10:52:19 +0200
commitda15db787bffe90e8ea8baac6a0cf6153922d088 (patch)
tree09c1a0393d630a9bd1f84e2d982d5c7aaa7e9277 /cpukit/score/src/rbtreeextract.c
parentscore: Add _RBTree_Initialize_one() (diff)
downloadrtems-da15db787bffe90e8ea8baac6a0cf6153922d088.tar.bz2
score: Improve red-black tree debug support
Ensure that we extract a node only from the right tree.
Diffstat (limited to 'cpukit/score/src/rbtreeextract.c')
-rw-r--r--cpukit/score/src/rbtreeextract.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpukit/score/src/rbtreeextract.c b/cpukit/score/src/rbtreeextract.c
index 3905f64900..8a87b2d56c 100644
--- a/cpukit/score/src/rbtreeextract.c
+++ b/cpukit/score/src/rbtreeextract.c
@@ -21,8 +21,7 @@ void _RBTree_Extract(
RBTree_Node *the_node
)
{
+ _Assert( the_node->tree == the_rbtree );
RB_REMOVE( RBTree_Control, the_rbtree, the_node );
-#if defined(RTEMS_DEBUG)
- _RBTree_Set_off_tree( the_node );
-#endif
+ _RBTree_Initialize_node( the_node );
}