source: rtems/cpukit/score/src/schedulerdefaultstartidle.c @ 24934e36

4.115
Last change on this file since 24934e36 was 24934e36, checked in by Sebastian Huber <sebastian.huber@…>, on 04/03/14 at 13:03:35

score: Add scheduler control to scheduler ops

Scheduler operations must be free of a global scheduler context to
enable partitioned/clustered scheduling.

  • Property mode set to 100644
File size: 496 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  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.