source: rtems/cpukit/libcsupport/include/vmeintr.h @ 83c5fc1

4.104.114.84.95
Last change on this file since 83c5fc1 was 83c5fc1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/23/04 at 06:07:53

2004-03-23 Ralf Corsepius <ralf_corsepius@…>

  • libcsupport/include/chain.h, libcsupport/include/clockdrv.h, libcsupport/include/ringbuf.h, libcsupport/include/spurious.h, libcsupport/include/timerdrv.h, libcsupport/include/vmeintr.h, libcsupport/include/motorola/mc68230.h, libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/libio.h, libcsupport/include/rtems/libio_.h, libcsupport/include/rtems/termiostypes.h, libcsupport/include/zilog/z8036.h, libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h, libcsupport/src/gettod.c, libcsupport/src/assoc.c, libcsupport/src/assocnamebad.c, libcsupport/src/error.c, libcsupport/src/libio.c, libcsupport/src/libio_sockets.c, libcsupport/src/malloc.c, libcsupport/src/no_libc.c, libcsupport/src/termios.c, libcsupport/src/termiosreserveresources.c: Convert to using c99 fixed-size types.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  vmeintr.h
3 *
4 *  This file is the specification for the VMEbus interface library
5 *  which should be provided by all BSPs for VMEbus Single Board
6 *  Computers but currently only a few do so.
7 *
8 *  COPYRIGHT (c) 1989-1999.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 *
15 *  $Id$
16 */
17
18#ifndef __VME_INTERRUPT_h
19#define __VME_INTERRUPT_h
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/*
26 *  This defines the mask which is used to determine which
27 *  interrupt levels are affected by a call to this package.
28 *  The LSB corresponds to VME interrupt 0 and the MSB
29 *  to VME interrupt 7.
30 *
31 */
32
33typedef uint8_t   VME_interrupt_Mask;
34
35/*
36 *  VME_interrupt_Disable
37 *
38 */
39
40void VME_interrupt_Disable (
41  VME_interrupt_Mask                mask                        /* IN  */
42);
43
44/*
45 *  VME_interrupt_Disable
46 *
47 */
48
49void VME_interrupt_Enable (
50  VME_interrupt_Mask                mask                        /* IN  */
51);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif /* end of include file */
Note: See TracBrowser for help on using the repository browser.