source: rtems/cpukit/libcsupport/include/spurious.h @ ee4f57d

4.104.114.84.95
Last change on this file since ee4f57d 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: 751 bytes
Line 
1/*  spurious.h
2 *
3 *  This file describes the Spurious Interrupt Driver for all boards.
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#ifndef __SPURIOUS_h
16#define __SPURIOUS_h
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define SPURIOUS_DRIVER_TABLE_ENTRY \
23  { Spurious_Initialize, NULL, NULL, NULL, NULL, NULL }
24
25rtems_device_driver Spurious_Initialize(
26  rtems_device_major_number,
27  rtems_device_minor_number,
28  void *,
29  rtems_id,
30  uint32_t   *
31);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif
38/* end of include file */
Note: See TracBrowser for help on using the repository browser.