summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimpleextract.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimpleextract.c')
-rw-r--r--cpukit/score/src/schedulersimpleextract.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/score/src/schedulersimpleextract.c b/cpukit/score/src/schedulersimpleextract.c
index ab38fb92f8..7bb4339ff3 100644
--- a/cpukit/score/src/schedulersimpleextract.c
+++ b/cpukit/score/src/schedulersimpleextract.c
@@ -24,8 +24,11 @@
#include <rtems/score/thread.h>
void _Scheduler_simple_Extract(
+ Scheduler_Control *scheduler,
Thread_Control *the_thread
)
{
+ (void) scheduler;
+
_Chain_Extract_unprotected( &the_thread->Object.Node );
}