source: rtems/cpukit/score/cpu/h8300/rtems/score/types.h @ 4ef13360

4.115
Last change on this file since 4ef13360 was 4ef13360, checked in by Joel Sherrill <joel.sherrill@…>, on 07/29/10 at 17:51:56

2010-07-29 Gedare Bloom <giddyup44@…>

PR 1635/cpukit

  • rtems/score/cpu.h, rtems/score/types.h: Refactoring of priority handling, to isolate the bitmap implementation of priorities in the supercore so that priority management is a little more modular. This change is in anticipation of scheduler implementations that can select how they manage tracking priority levels / finding the highest priority ready task. Note that most of the changes here are simple renaming, to clarify the use of the bitmap-based priority management.
  • Property mode set to 100644
File size: 794 bytes
RevLine 
[aa5049d]1/**
2 * @file rtems/score/types.h
3 */
4
5/*
[5532553]6 *  This include file contains type definitions pertaining to the Hitachi
7 *  h8300 processor family.
8 *
9 *  COPYRIGHT (c) 1989-1999.
10 *  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
[a97f3776]14 *  http://www.rtems.com/license/LICENSE.
[5532553]15 *
16 *  $Id$
17 */
18
[7f70d1b7]19#ifndef _RTEMS_SCORE_TYPES_H
20#define _RTEMS_SCORE_TYPES_H
[5532553]21
[89b85e51]22#include <rtems/score/basedefs.h>
[5532553]23
[89b85e51]24#ifndef ASM
[b9b531f]25
[5532553]26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
[4ef13360]34typedef uint16_t     Priority_bit_map_Control;
[5532553]35typedef void h8300_isr;
36typedef void ( *h8300_isr_entry )( void );
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif  /* !ASM */
43
44#endif
Note: See TracBrowser for help on using the repository browser.