source: rtems/c/src/lib/libbsp/hppa1.1/simhppa/startup/bspclean.c @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 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
RevLine 
[ac7d5ef0]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 *
[03f2154e]11 *  COPYRIGHT (c) 1989-1997.
[ac7d5ef0]12 *  On-Line Applications Research Corporation (OAR).
[03f2154e]13 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]14 *
[98e4ebf5]15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
[03f2154e]17 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]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.