source: rtems/c/src/lib/libbsp/hppa1.1/simhppa/startup/bspclean.c @ 6fd3979

4.104.114.84.95
Last change on this file since 6fd3979 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 811 bytes
Line 
1/*  bsp_cleanup()
2 *
3 *  This routine normally is part of start.s and returns
4 *  control to a monitor but on the HP PA-RISC simulator
5 *  we do that directly from main.c.
6 *
7 *  INPUT:  NONE
8 *
9 *  OUTPUT: NONE
10 *
11 *  COPYRIGHT (c) 1989-1997.
12 *  On-Line Applications Research Corporation (OAR).
13 *  Copyright assigned to U.S. Government, 1994.
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.OARcorp.com/rtems/license.html.
18 *
19 *  $Id$
20 */
21
22#include <bsp.h>
23
24/*
25 * The app has "exited" (called rtems_shutdown_executive)
26 */
27
28void bsp_cleanup( void )
29{
30    /*
31     * Invoke any fatal error extension and "halt"
32     * By definition, rtems_fatal_error_occurred does not return.
33     */
34
35    rtems_fatal_error_occurred(0);
36}
Note: See TracBrowser for help on using the repository browser.