summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/schedulerdefaultschedule.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-05-15score: Add and use _Scheduler_default_Schedule()Sebastian Huber1-7/+6
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().