summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerdefaultstartidle.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-06-23score: Remove scheduler parameter from most opsSebastian Huber1-1/+2
Remove the scheduler parameter from most high level scheduler operations like - _Scheduler_Block(), - _Scheduler_Unblock(), - _Scheduler_Change_priority(), - _Scheduler_Update_priority(), - _Scheduler_Release_job(), and - _Scheduler_Yield(). This simplifies the scheduler operations usage.
2014-04-15score: Static scheduler configurationSebastian Huber1-3/+3
Do not allocate the scheduler control structures from the workspace. This is a preparation step for configuration of clustered/partitioned schedulers on SMP.
2014-04-04score: Add scheduler control to scheduler opsSebastian Huber1-5/+6
Scheduler operations must be free of a global scheduler context to enable partitioned/clustered scheduling.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2013-07-26score: Create scheduler implementation headerSebastian Huber1-1/+1
Move implementation specific parts of scheduler.h and scheduler.inl into new header file schedulerimpl.h. The scheduler.h contains now only the application visible API.
2013-06-14scheduler: Add start idle thread operationSebastian Huber1-0/+22
Add and use _Scheduler_Start_idle().