summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/rbtreeimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-08-21 05:24:17 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-08-31 09:59:42 +0200
commit2d48456ef55717224065d21c6c3b837c816a69c1 (patch)
tree9b2d7a4d9894280bfb2fee6e9fedd1b3c99e0560 /cpukit/score/include/rtems/score/rbtreeimpl.h
parentrbtree: Delete _RBTree_Is_first() (diff)
downloadrtems-2d48456ef55717224065d21c6c3b837c816a69c1.tar.bz2
rbheap: Drop direction from _RBTree_Iterate()
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/rbtreeimpl.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/rbtreeimpl.h b/cpukit/score/include/rtems/score/rbtreeimpl.h
index ed4cbd558a..607e7ebf84 100644
--- a/cpukit/score/include/rtems/score/rbtreeimpl.h
+++ b/cpukit/score/include/rtems/score/rbtreeimpl.h
@@ -37,7 +37,6 @@ extern "C" {
* @brief Red-black tree visitor.
*
* @param[in] node The node.
- * @param[in] dir The direction.
* @param[in] visitor_arg The visitor argument.
*
* @retval true Stop the iteration.
@@ -47,7 +46,6 @@ extern "C" {
*/
typedef bool (*RBTree_Visitor)(
const RBTree_Node *node,
- RBTree_Direction dir,
void *visitor_arg
);
@@ -55,13 +53,11 @@ typedef bool (*RBTree_Visitor)(
* @brief Red-black tree iteration.
*
* @param[in] rbtree The red-black tree.
- * @param[in] dir The direction.
* @param[in] visitor The visitor.
* @param[in] visitor_arg The visitor argument.
*/
void _RBTree_Iterate(
const RBTree_Control *rbtree,
- RBTree_Direction dir,
RBTree_Visitor visitor,
void *visitor_arg
);