source: rtems/cpukit/score/src/schedulerdefaultstartidle.c @ eea7c937

4.115
Last change on this file since eea7c937 was c6e21ee1, checked in by Sebastian Huber <sebastian.huber@…>, on 07/24/13 at 11:12:38

score: Create scheduler implementation header

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.

  • Property mode set to 100644
File size: 448 bytes
Line 
1/*
2 * Copyright (c) 2013 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.com/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  Thread_Control  *thread,
17  Per_CPU_Control *processor
18)
19{
20  (void) processor;
21  _Scheduler_Unblock( thread );
22}
Note: See TracBrowser for help on using the repository browser.