source: rtems/c/src/exec/sapi/src/fatal.c @ c64e4ed4

4.104.114.84.95
Last change on this file since c64e4ed4 was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 910 bytes
Line 
1/*
2 *  Fatal Error Manager
3 *
4 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
5 *  On-Line Applications Research Corporation (OAR).
6 *  All rights assigned to U.S. Government, 1994.
7 *
8 *  This material may be reproduced by or for the U.S. Government pursuant
9 *  to the copyright license under the clause at DFARS 252.227-7013.  This
10 *  notice must appear in all copies of this file and its derivatives.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/fatal.h>
17#include <rtems/score/interr.h>
18
19/*PAGE
20 *
21 *  rtems_fatal_error_occurred
22 *
23 *  This directive will invoke the internal fatal error handler.
24 *
25 *  Input parameters:
26 *    the_error - fatal error status code
27 *
28 *  Output parameters: NONE
29 */
30
31void volatile rtems_fatal_error_occurred(
32  unsigned32 the_error
33)
34{
35  _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, the_error );
36
37/* will not return from this routine */
38}
Note: See TracBrowser for help on using the repository browser.