source: rtems/cpukit/score/src/schedulerdefaultstartidle.c @ 439c494

4.115
Last change on this file since 439c494 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • 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.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  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.