source: rtems/cpukit/sapi/src/fatal.c @ 33b304f

4.104.114.84.95
Last change on this file since 33b304f 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: 827 bytes
Line 
1/*
2 *  Fatal Error Manager
3 *
4 *  COPYRIGHT (c) 1989-1997.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
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.