source: rtems/c/src/lib/libbsp/c4x/c4xsim/startup/spurious.c @ 94e79c6

Last change on this file since 94e79c6 was 94e79c6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:43:54

2003-09-04 Joel Sherrill <joel@…>

  • clock/clock.c, console/console.c, console/consolereserveresources.c, console/debugio.c, include/bsp.h, startup/bspstart.c, startup/spurious.c, timer/timer.c: URL for license changed.
  • Property mode set to 100644
File size: 689 bytes
RevLine 
[61ba9763]1/*
2 *  CXX Simulator Spurious Trap Handler Assistant
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
[94e79c6]12 *  http://www.rtems.com/license/LICENSE.
[61ba9763]13 *
14 *  $Id$
15 */
16
17#include <bsp.h>
[ed612fa]18#include <rtems/bspIo.h>
[61ba9763]19#include <simio.h>
20
21/*
22 *  bsp_spurious_handler_assistant
23 *
24 *  We can't recover so just return to gdb.
25 */
26
27void bsp_spurious_handler_assistant(
28  rtems_vector_number  vector,
29  CPU_Interrupt_frame *isf
30)
31{
32  sim_exit();
33}
Note: See TracBrowser for help on using the repository browser.