forked from Imagelibrary/rtems
* 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.
39 lines
751 B
C
39 lines
751 B
C
/* spurious.h
|
|
*
|
|
* This file describes the Spurious Interrupt Driver for all boards.
|
|
*
|
|
* COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __SPURIOUS_h
|
|
#define __SPURIOUS_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SPURIOUS_DRIVER_TABLE_ENTRY \
|
|
{ Spurious_Initialize, NULL, NULL, NULL, NULL, NULL }
|
|
|
|
rtems_device_driver Spurious_Initialize(
|
|
rtems_device_major_number,
|
|
rtems_device_minor_number,
|
|
void *,
|
|
rtems_id,
|
|
uint32_t *
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
/* end of include file */
|