source: rtems/cpukit/score/src/scheduler.c @ f031df0e

4.115
Last change on this file since f031df0e 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: 534 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Scheduler Initialize
5 * @ingroup ScoreScheduler
6 */
7
8/*
9 *  Copyright (C) 2010 Gedare Bloom.
10 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/score/schedulerimpl.h>
22
23void _Scheduler_Handler_initialization(void)
24{
25  (*_Scheduler.Operations.initialize)();
26}
Note: See TracBrowser for help on using the repository browser.