source: rtems/cpukit/score/src/schedulerdefaultschedule.c @ 8a8b95aa

5
Last change on this file since 8a8b95aa was 3733b224, checked in by Sebastian Huber <sebastian.huber@…>, on 05/15/14 at 06:46:56

score: Add and use _Scheduler_default_Schedule()

  • Property mode set to 100644
File size: 451 bytes
Line 
1/*
2 * Copyright (c) 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/scheduler.h>
14
15void _Scheduler_default_Schedule(
16  const Scheduler_Control *scheduler,
17  Thread_Control          *the_thread
18)
19{
20  (void) scheduler;
21  (void) the_thread;
22}
Note: See TracBrowser for help on using the repository browser.