summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/rbtreeimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-07-26 12:52:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-07-26 12:52:22 +0200
commit4cd55724bbc6c125be4669ea4343e93cb7108d3b (patch)
tree2ce29041728200121c6b9e86c7a19b6df13ce672 /cpukit/score/include/rtems/score/rbtreeimpl.h
parentrbtree: Update maximum node in LIFO order (diff)
downloadrtems-4cd55724bbc6c125be4669ea4343e93cb7108d3b.tar.bz2
Delete unused *_Is_null() functions
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/rbtreeimpl.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpukit/score/include/rtems/score/rbtreeimpl.h b/cpukit/score/include/rtems/score/rbtreeimpl.h
index 4bc2155a4d..f3af7fe6ec 100644
--- a/cpukit/score/include/rtems/score/rbtreeimpl.h
+++ b/cpukit/score/include/rtems/score/rbtreeimpl.h
@@ -77,21 +77,6 @@ RTEMS_INLINE_ROUTINE RBTree_Direction _RBTree_Opposite_direction(
}
/**
- * @brief Is this RBTree control pointer NULL.
- *
- * This function returns true if @a the_rbtree is NULL and false otherwise.
- *
- * @retval true @a the_rbtree is @c NULL.
- * @retval false @a the_rbtree is not @c NULL.
- */
-RTEMS_INLINE_ROUTINE bool _RBTree_Is_null(
- const RBTree_Control *the_rbtree
- )
-{
- return (the_rbtree == NULL);
-}
-
-/**
* @brief Is this node red.
*
* This function returns true if @a the_node is red and false otherwise.