summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulersimple.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/schedulersimple.c')
-rw-r--r--cpukit/score/src/schedulersimple.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/cpukit/score/src/schedulersimple.c b/cpukit/score/src/schedulersimple.c
index b825b29014..38fb194f44 100644
--- a/cpukit/score/src/schedulersimple.c
+++ b/cpukit/score/src/schedulersimple.c
@@ -19,16 +19,13 @@
#include "config.h"
#endif
-#include <rtems/score/schedulersimple.h>
+#include <rtems/score/schedulersimpleimpl.h>
#include <rtems/score/chainimpl.h>
-#include <rtems/score/wkspace.h>
-void _Scheduler_simple_Initialize ( void )
+void _Scheduler_simple_Initialize( const Scheduler_Control *scheduler )
{
- Scheduler_simple_Control *scheduler =
- _Workspace_Allocate_or_fatal_error( sizeof( *scheduler ) );
+ Scheduler_simple_Context *context =
+ _Scheduler_simple_Get_context( scheduler );
- _Chain_Initialize_empty( &scheduler->Ready );
-
- _Scheduler.information = scheduler;
+ _Chain_Initialize_empty( &context->Ready );
}