source: rtems-schedsim/schedsim/rtems/sched_cpu/rtems/score/types.h @ 726b27c

Last change on this file since 726b27c was 726b27c, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/13 at 17:01:48

schedsim: Update to latest RTEMS. Works Uniprocessor

  • Property mode set to 100644
File size: 960 bytes
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
7 *
8 *  This include file contains type definitions pertaining to the Intel
9 *  no_cpu processor family.
10 *
11 *  COPYRIGHT (c) 1989-2013.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 */
18
19#ifndef _RTEMS_SCORE_TYPES_H
20#define _RTEMS_SCORE_TYPES_H
21
22#include <rtems/score/basedefs.h>
23
24#ifndef ASM
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
34typedef uint16_t Priority_bit_map_Word;
35
36/** This defines the return type for an ISR entry point. */
37typedef void no_cpu_isr;
38
39/** This defines the prototype for an ISR entry point. */
40typedef no_cpu_isr ( *no_cpu_isr_entry )( void );
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif  /* !ASM */
47
48#endif
Note: See TracBrowser for help on using the repository browser.