4.115
Last change
on this file since c86da31c was
c86da31c,
checked in by Joel Sherrill <joel.sherrill@…>, on 06/15/10 at 22:43:56
|
2010-06-15 Joel Sherrill <joel.sherrill@…>
PR 1561/cpukit
- .cvsignore, ChangeLog?, Makefile.am, Makefile.in, README, context.S,
cpu.c, preinstall.am, rtems/asm.h, rtems/score/cpu.h,
rtems/score/sparc64.h, rtems/score/types.h: New files.
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | /** |
---|
2 | * @file rtems/score/types.h |
---|
3 | */ |
---|
4 | |
---|
5 | /* |
---|
6 | * This include file contains type definitions pertaining to the |
---|
7 | * SPARC-v9 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 |
---|
14 | * http://www.rtems.com/license/LICENSE. |
---|
15 | * |
---|
16 | * $Id$ |
---|
17 | */ |
---|
18 | |
---|
19 | #ifndef _RTEMS_SCORE_TYPES_H |
---|
20 | #define _RTEMS_SCORE_TYPES_H |
---|
21 | |
---|
22 | #ifndef ASM |
---|
23 | |
---|
24 | #include <stdbool.h> |
---|
25 | #include <stdint.h> |
---|
26 | |
---|
27 | #ifdef __cplusplus |
---|
28 | extern "C" { |
---|
29 | #endif |
---|
30 | |
---|
31 | /* |
---|
32 | * This section defines the basic types for this processor. |
---|
33 | */ |
---|
34 | |
---|
35 | typedef uint16_t Priority_Bit_map_control; |
---|
36 | typedef void sparc_isr; |
---|
37 | typedef void ( *sparc_isr_entry )( void ); |
---|
38 | |
---|
39 | #ifdef RTEMS_DEPRECATED_TYPES |
---|
40 | typedef bool boolean; /* Boolean value */ |
---|
41 | typedef float single_precision; /* single precision float */ |
---|
42 | typedef double double_precision; /* double precision float */ |
---|
43 | #endif |
---|
44 | |
---|
45 | #ifdef __cplusplus |
---|
46 | } |
---|
47 | #endif |
---|
48 | |
---|
49 | #endif /* !ASM */ |
---|
50 | |
---|
51 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.