summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadqimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-19 17:03:31 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-20 16:11:02 +0200
commit8a040fe4eeb9f7ba5c9f95f8abd45b9b6d5f7c4b (patch)
tree9eae69fdf0cbda0635d6f2c9e13c04a50dab0742 /cpukit/score/include/rtems/score/threadqimpl.h
parentscore: Add per scheduler instance maximum priority (diff)
downloadrtems-8a040fe4eeb9f7ba5c9f95f8abd45b9b6d5f7c4b.tar.bz2
score: Use _RBTree_Insert_inline()
Use _RBTree_Insert_inline() for priority thread queues. Update #2556.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/threadqimpl.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpukit/score/include/rtems/score/threadqimpl.h b/cpukit/score/include/rtems/score/threadqimpl.h
index b09cc97790..5ce89e76f4 100644
--- a/cpukit/score/include/rtems/score/threadqimpl.h
+++ b/cpukit/score/include/rtems/score/threadqimpl.h
@@ -826,21 +826,6 @@ RTEMS_INLINE_ROUTINE void _Thread_queue_Boost_priority(
}
#endif
-/**
- * @brief Compare two thread's priority for RBTree Insertion.
- *
- * @param[in] left points to the left thread's RBnode
- * @param[in] right points to the right thread's RBnode
- *
- * @retval 1 The @a left node is more important than @a right node.
- * @retval 0 The @a left node is of equal importance with @a right node.
- * @retval 1 The @a left node is less important than @a right node.
- */
-RBTree_Compare_result _Thread_queue_Compare_priority(
- const RBTree_Node *left,
- const RBTree_Node *right
-);
-
#if defined(RTEMS_MULTIPROCESSING)
void _Thread_queue_MP_callout_do_nothing(
Thread_Control *the_proxy,