summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/rbtreeiterate.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-31rbheap: Drop direction from _RBTree_Iterate()Sebastian Huber1-5/+3
2014-07-22rbtree: FormatSebastian Huber1-6/+6
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-11-21score/rbtree: Remove "unprotected" from APISebastian Huber1-3/+3
2013-07-23score: Create rbtree implementation headerSebastian Huber1-1/+1
Move implementation specific parts of rbtree.h and rbtree.inl into new header file rbtreeimpl.h. The rbtree.h contains now only the application visible API.
2012-05-08rbtree: API changes. Remove rbtree control node from RBTree_Next.Gedare Bloom1-1/+1
The implementation of RBTree_Next was using an awkward construction to detect and avoid accessing the false root of the red-black tree. To deal with the false root, RBTree_Next was comparing node parents with the control node. Instead the false root can be detected by checking if the grandparent of a node exists; the grandparent of the tree's true root is NULL by definition so the root of the tree is found while walking up the tree by checking for the non-existence of a grandparent. This change propagates into the predecessor/successor and iterate functions.
2012-04-11rbtree: New function _RBTree_Iterate_unprotected()Sebastian Huber1-0/+45