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

4.104.114.84.95
Last change on this file since d2b4fcd was 4d3017a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/04 at 18:04:55

Add doxygen preamble.

  • Property mode set to 100644
File size: 786 bytes
Line 
1/**
2 * @file rtems/spurious.h
3 */
4
5/*  spurious.h
6 *
7 *  This file describes the Spurious Interrupt Driver for all boards.
8 *
9 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
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 __SPURIOUS_h
20#define __SPURIOUS_h
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#define SPURIOUS_DRIVER_TABLE_ENTRY \
27  { Spurious_Initialize, NULL, NULL, NULL, NULL, NULL }
28
29rtems_device_driver Spurious_Initialize(
30  rtems_device_major_number,
31  rtems_device_minor_number,
32  void *,
33  rtems_id,
34  uint32_t   *
35);
36
37#ifdef __cplusplus
38}
39#endif
40
41#endif
42/* end of include file */
Note: See TracBrowser for help on using the repository browser.