source: rtems/cpukit/score/src/schedulerpriority.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 875 bytes
RevLine 
[0faa9dad]1/*
2 *  Scheduler Handler
3 *
4 *  Copyright (C) 2010 Gedare Bloom.
[010192d]5 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
[0faa9dad]6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/system.h>
17#include <rtems/config.h>
[108c4b0]18#include <rtems/score/prioritybitmap.h>
[0faa9dad]19#include <rtems/score/scheduler.h>
20#include <rtems/score/schedulerpriority.h>
21
22/* Instantiate any global variables needed by the priority scheduler */
23volatile Priority_bit_map_Control _Priority_Major_bit_map;
24
25Priority_bit_map_Control          _Priority_Bit_map[16] CPU_STRUCTURE_ALIGNMENT;
26
[010192d]27void _Scheduler_priority_Initialize(void)
[0faa9dad]28{
[010192d]29  _Scheduler_priority_Ready_queue_initialize();
[1741a51]30  _Priority_bit_map_Handler_initialization();
[0faa9dad]31}
Note: See TracBrowser for help on using the repository browser.