source: rtems/c/src/lib/libbsp/c4x/shared/bspspuriousinit.c @ d6ad3b5

4.104.114.84.95
Last change on this file since d6ad3b5 was 49b325f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/04/02 at 17:40:44

2002-01-03 Ralf Corsepius <corsepiu@…>

  • shared/bspspuriousinit.c: Include rtems/bspIo.h instead of bspIo.h.
  • shared/c3xspurious.c: Include rtems/bspIo.h instead of bspIo.h.
  • shared/c4xspurious.c: Include rtems/bspIo.h instead of bspIo.h.
  • Property mode set to 100644
File size: 898 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.OARcorp.com/rtems/license.html.
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  rtems_unsigned32 vector;
34
35  for ( vector=0 ; vector<64 ; vector++ ) {
36
37    /*
38     *  Skip any vectors that might be generally used for traps.
39     */
40
41    set_vector( bsp_spurious_handler, vector, 1 );
42  }
43
44}
Note: See TracBrowser for help on using the repository browser.