source: rtems/cpukit/libcsupport/include/spurious.h @ 9ab091e

4.115
Last change on this file since 9ab091e 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: 844 bytes
Line 
1/**
2 * @file rtems/spurious.h
3 *
4 * This file describes the Spurious Interrupt Driver for all boards.
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-2011.
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
16#ifndef _RTEMS_SPURIOUS_H
17#define _RTEMS_SPURIOUS_H
18
19#include <rtems/rtems/types.h> /* rtems_id */
20#include <rtems/io.h> /* rtems_device_driver */
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.