source: rtems/c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c @ ef559c7

4.115
Last change on this file since ef559c7 was 6e14a99, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/14 at 22:31:04

m68k/shared and sim68000: Fix warnings

  • Property mode set to 100644
File size: 531 bytes
Line 
1/*
2 *  Spurious Trap Handler Assistant
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-2014.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#include <bsp.h>
15#include <rtems/bspIo.h>
16
17/*
18 *  bsp_spurious_handler_assistant
19 *
20 *  We can't recover so just return to gdb.
21 */
22void bsp_spurious_handler_assistant(
23  rtems_vector_number  vector
24)
25{
26  /* XXX do something here */
27}
Note: See TracBrowser for help on using the repository browser.