From e1598a616db1e9dadfd74abeb20b1f1ec5daaa7f Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 4 Apr 2014 10:56:36 +0200 Subject: score: Static scheduler configuration Do not allocate the scheduler control structures from the workspace. This is a preparation step for configuration of clustered/partitioned schedulers on SMP. --- cpukit/score/src/schedulersimple.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'cpukit/score/src/schedulersimple.c') 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 +#include #include -#include -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 ); } -- cgit v1.2.3