summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadchangepriority.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/threadchangepriority.c')
-rw-r--r--cpukit/score/src/threadchangepriority.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpukit/score/src/threadchangepriority.c b/cpukit/score/src/threadchangepriority.c
index d895ee6dbe..e3cf4a165a 100644
--- a/cpukit/score/src/threadchangepriority.c
+++ b/cpukit/score/src/threadchangepriority.c
@@ -142,40 +142,6 @@ void _Thread_Raise_priority(
);
}
-#if defined(RTEMS_SMP)
-static bool _Thread_Inherit_priority_filter(
- Thread_Control *inheritor,
- Priority_Control *new_priority,
- void *arg
-)
-{
- Thread_Control *ancestor = arg;
-
- if ( _Scheduler_Get_own( inheritor ) == _Scheduler_Get_own( ancestor ) ) {
- *new_priority = ancestor->current_priority;
- }
-
- return _Thread_Priority_less_than(
- inheritor->current_priority,
- *new_priority
- );
-}
-
-void _Thread_Inherit_priority(
- Thread_Control *inheritor,
- Thread_Control *ancestor
-)
-{
- _Thread_Change_priority(
- inheritor,
- PRIORITY_PSEUDO_ISR,
- ancestor,
- _Thread_Inherit_priority_filter,
- false
- );
-}
-#endif
-
static bool _Thread_Restore_priority_filter(
Thread_Control *the_thread,
Priority_Control *new_priority,