source: rtems/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c @ 0478880

4.104.114.95
Last change on this file since 0478880 was 6128a4a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 10:43:04

Remove stray white spaces.

  • Property mode set to 100644
File size: 916 bytes
Line 
1/*
2 *  CXX Spurious Trap Handler Install Routine
3 *
4 *  This is just enough of a trap handler to let us know what
5 *  the likely source of the trap was.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
18#include <rtems/bspIo.h>
19
20/*
21 *  bsp_spurious_initialize
22 *
23 *  Install the spurious handler for most vectors.
24 */
25
26rtems_isr bsp_spurious_handler(
27   rtems_vector_number  vector/*,
28   CPU_Interrupt_frame *isf */
29);
30
31void bsp_spurious_initialize()
32{
33  uint32_t         vector;
34
35  for ( vector=0 ; vector<255 ; vector++ ) {
36
37    /*
38     *  Skip any vectors that might be generally used for traps.
39     *
40     *  XXX
41     */
42
43    set_vector( bsp_spurious_handler, vector, 1 );
44  }
45
46}
Note: See TracBrowser for help on using the repository browser.