source: rtems/cpukit/score/src/schedulersimple.c @ 3346106b

4.115
Last change on this file since 3346106b was 3346106b, checked in by Sebastian Huber <sebastian.huber@…>, on 08/07/13 at 11:22:52

score: Rename _Scheduler_simple_Update()

Rename _Scheduler_simple_Update() in _Scheduler_default_Update().

  • Property mode set to 100644
File size: 818 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Scheduler Simple Functions
5 *
6 * @ingroup ScoreScheduler
7 */
8
9/*
10 *  COPYRIGHT (c) 2011.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/score/schedulersimple.h>
23#include <rtems/score/chainimpl.h>
24#include <rtems/score/wkspace.h>
25
26void _Scheduler_simple_Initialize ( void )
27{
28  void *f;
29
30  /*
31   * Initialize Ready Queue
32   */
33
34  /* allocate ready queue structures */
35  f = _Workspace_Allocate_or_fatal_error( sizeof(Chain_Control) );
36  _Scheduler.information = f;
37
38  /* initialize ready queue structure */
39  _Chain_Initialize_empty( (Chain_Control *)f );
40}
Note: See TracBrowser for help on using the repository browser.