source: rtems/cpukit/sapi/include/rtems/fatal.h @ 277cc95

4.104.114.84.95
Last change on this file since 277cc95 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1000 bytes
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-1999.
13 *  On-Line Applications Research Corporation (OAR).
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#ifndef __RTEMS_FATAL_h
23#define __RTEMS_FATAL_h
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29/*
30 *  rtems_fatal_error_occurred
31 *
32 *  DESCRIPTION:
33 *
34 *  This is the routine which implements the rtems_fatal_error_occurred
35 *  directive.  It is invoked when the application or RTEMS
36 *  determines that a fatal error has occurred.
37 */
38
39void volatile rtems_fatal_error_occurred(
40  unsigned32 the_error
41);
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif
48/* end of include file */
Note: See TracBrowser for help on using the repository browser.