summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-07-12 14:22:21 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-07-15 10:03:48 -0500
commit7e119990382702a6d019d748b778180824ba46ee (patch)
tree01cb85f23e98ecece8add13d0d095177d43bbc5e /cpukit/sapi
parentuart-output-char.h: extra offset definition. (diff)
downloadrtems-7e119990382702a6d019d748b778180824ba46ee.tar.bz2
rbtree: Delete unused functions
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/include/rtems/rbtree.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/cpukit/sapi/include/rtems/rbtree.h b/cpukit/sapi/include/rtems/rbtree.h
index cdef80100f..7e59e036a2 100644
--- a/cpukit/sapi/include/rtems/rbtree.h
+++ b/cpukit/sapi/include/rtems/rbtree.h
@@ -146,18 +146,6 @@ RTEMS_INLINE_ROUTINE bool rtems_rbtree_is_node_off_rbtree(
}
/**
- * @brief Is the RBTree Node Pointer NULL.
- *
- * This function returns true if @a the_node is NULL and false otherwise.
- */
-RTEMS_INLINE_ROUTINE bool rtems_rbtree_is_null_node(
- const rtems_rbtree_node *the_node
-)
-{
- return _RBTree_Is_null_node( the_node );
-}
-
-/**
* @brief Return pointer to RBTree root.
*
* This function returns a pointer to the root node of @a the_rbtree.
@@ -230,20 +218,6 @@ RTEMS_INLINE_ROUTINE rtems_rbtree_node *rtems_rbtree_parent(
}
/**
- * @brief Are two nodes equal.
- *
- * This function returns true if @a left and @a right are equal,
- * and false otherwise.
- */
-RTEMS_INLINE_ROUTINE bool rtems_rbtree_are_nodes_equal(
- const rtems_rbtree_node *left,
- const rtems_rbtree_node *right
-)
-{
- return _RBTree_Are_nodes_equal( left, right );
-}
-
-/**
* @brief Is the RBTree empty.
*
* This function returns true if there a no nodes on @a the_rbtree and
@@ -284,20 +258,6 @@ RTEMS_INLINE_ROUTINE bool rtems_rbtree_is_max(
return _RBTree_Is_first( the_rbtree, the_node, RBT_RIGHT );
}
-
-/**
- * @brief Does this RBTree have only one node.
- *
- * This function returns true if there is only one node on @a the_rbtree and
- * false otherwise.
- */
-RTEMS_INLINE_ROUTINE bool rtems_rbtree_has_only_one_node(
- const rtems_rbtree_control *the_rbtree
-)
-{
- return _RBTree_Has_only_one_node( the_rbtree );
-}
-
/**
* @brief Is this node the RBTree root.
*