summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimplesmp.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-12 12:34:27 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-20 10:14:04 +0200
commit6ba15488ee9e1bdaeafdee773ca0eef2d1a0ed3a (patch)
tree4f0dcf443324fcf96b6596f91cb2158ef854d6ae /cpukit/score/src/schedulersimplesmp.c
parentsmp: Replace Scheduler_simple_smp_Control (diff)
downloadrtems-6ba15488ee9e1bdaeafdee773ca0eef2d1a0ed3a.tar.bz2
smp: Rename _Scheduler_simple_smp_Start_idle()
Rename _Scheduler_simple_smp_Start_idle() to _Scheduler_SMP_Start_idle().
Diffstat (limited to 'cpukit/score/src/schedulersimplesmp.c')
-rw-r--r--cpukit/score/src/schedulersimplesmp.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/cpukit/score/src/schedulersimplesmp.c b/cpukit/score/src/schedulersimplesmp.c
index 090572302e..9e4c9d96aa 100644
--- a/cpukit/score/src/schedulersimplesmp.c
+++ b/cpukit/score/src/schedulersimplesmp.c
@@ -182,15 +182,3 @@ void _Scheduler_simple_smp_Schedule( Thread_Control *thread )
{
( void ) thread;
}
-
-void _Scheduler_simple_smp_Start_idle(
- Thread_Control *thread,
- Per_CPU_Control *cpu
-)
-{
- Scheduler_SMP_Control *self = _Scheduler_SMP_Instance();
-
- thread->is_scheduled = true;
- thread->cpu = cpu;
- _Chain_Append_unprotected( &self->scheduled, &thread->Object.Node );
-}