source: rtems/cpukit/score/cpu/sh/rtems/score/types.h @ 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: 1.1 KB
Line 
1/**
2 * @file rtems/score/types.h
3 */
4
5/*
6 *  This include file contains information pertaining to the Hitachi SH
7 *  processor.
8 *
9 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
10 *           Bernd Becker (becker@faw.uni-ulm.de)
11 *
12 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 *
19 *  COPYRIGHT (c) 1998-2001.
20 *  On-Line Applications Research Corporation (OAR).
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.rtems.com/license/LICENSE.
25 */
26
27#ifndef _RTEMS_SCORE_TYPES_H
28#define _RTEMS_SCORE_TYPES_H
29
30#include <rtems/score/basedefs.h>
31
32#ifndef ASM
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/*
39 *  This section defines the basic types for this processor.
40 */
41
42typedef uint16_t     Priority_bit_map_Control;
43
44typedef void sh_isr;
45typedef void ( *sh_isr_entry )( void );
46
47#ifdef __cplusplus
48}
49#endif
50
51#endif  /* !ASM */
52
53#endif
Note: See TracBrowser for help on using the repository browser.