source: rtems/c/src/exec/sapi/headers/fatal.h @ 637df35

4.104.114.84.95
Last change on this file since 637df35 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  fatal.h
2 *
3 *  This include file contains constants and prototypes related
4 *  to the Fatal Error Manager.  This manager processes all fatal or
5 *  irrecoverable errors.
6 *
7 *  This manager provides directives to:
8 *
9 *     + announce a fatal error has occurred
10 *
11 *
12 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
13 *  On-Line Applications Research Corporation (OAR).
14 *  All rights assigned to U.S. Government, 1994.
15 *
16 *  This material may be reproduced by or for the U.S. Government pursuant
17 *  to the copyright license under the clause at DFARS 252.227-7013.  This
18 *  notice must appear in all copies of this file and its derivatives.
19 *
20 *  $Id$
21 */
22
23#ifndef __RTEMS_FATAL_h
24#define __RTEMS_FATAL_h
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  rtems_fatal_error_occurred
32 *
33 *  DESCRIPTION:
34 *
35 *  This is the routine which implements the rtems_fatal_error_occurred
36 *  directive.  It is invoked when the application or RTEMS
37 *  determines that a fatal error has occurred.
38 */
39
40void volatile rtems_fatal_error_occurred(
41  unsigned32 the_error
42);
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif
49/* end of include file */
Note: See TracBrowser for help on using the repository browser.