source: rtems/cpukit/score/src/schedulersimple.c @ 62d947d

4.115
Last change on this file since 62d947d was 62d947d, checked in by Sebastian Huber <sebastian.huber@…>, on 08/07/13 at 09:50:32

score: Rename _Scheduler_simple_Allocate(), etc.

Rename _Scheduler_simple_Allocate() in _Scheduler_default_Allocate().
Rename _Scheduler_simple_Free() in _Scheduler_default_Free().

  • Property mode set to 100644
File size: 885 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_Update(
27  Thread_Control *the_thread
28)
29{
30}
31
32void _Scheduler_simple_Initialize ( void )
33{
34  void *f;
35
36  /*
37   * Initialize Ready Queue
38   */
39
40  /* allocate ready queue structures */
41  f = _Workspace_Allocate_or_fatal_error( sizeof(Chain_Control) );
42  _Scheduler.information = f;
43
44  /* initialize ready queue structure */
45  _Chain_Initialize_empty( (Chain_Control *)f );
46}
Note: See TracBrowser for help on using the repository browser.