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

4.115
Last change on this file since a936aa49 was 1ccb64e1, checked in by Sebastian Huber <sebastian.huber@…>, on 06/06/13 at 13:28:41

scheduler: Add start idle thread operation

Add and use _Scheduler_Start_idle().

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