source: rtems/cpukit/score/src/schedulerdefaultstartidle.c @ 69aa3349

4.115
Last change on this file since 69aa3349 was e1598a6, checked in by Sebastian Huber <sebastian.huber@…>, on 04/04/14 at 08:56:36

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.

  • Property mode set to 100644
File size: 514 bytes
Line 
1/*
2 * Copyright (c) 2013-2014 embedded brains GmbH
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#if HAVE_CONFIG_H
10  #include "config.h"
11#endif
12
13#include <rtems/score/schedulerimpl.h>
14
15void _Scheduler_default_Start_idle(
16  const Scheduler_Control *scheduler,
17  Thread_Control          *the_thread,
18  Per_CPU_Control         *cpu
19)
20{
21  (void) cpu;
22  _Scheduler_Unblock( scheduler, the_thread );
23}
Note: See TracBrowser for help on using the repository browser.