source: rtems/cpukit/sapi/include/rtems/fatal.h @ ee081506

4.104.114.84.95
Last change on this file since ee081506 was ee081506, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 12:21:06

2005-01-18 Ralf Corsepius <ralf.corsepius@…>

  • sapi/include/rtems/fatal.h, score/include/rtems/score/interr.h: Remove volatile on return type (GCC-4.0 complains about them).
  • Property mode set to 100644
File size: 1007 bytes
Line 
1/**
2 * @file rtems/fatal.h
3 */
4 
5/*
6 *  This include file contains constants and prototypes related
7 *  to the Fatal Error Manager.  This manager processes all fatal or
8 *  irrecoverable errors.
9 *
10 *  This manager provides directives to:
11 *
12 *     + announce a fatal error has occurred
13 *
14 *
15 *  COPYRIGHT (c) 1989-1999.
16 *  On-Line Applications Research Corporation (OAR).
17 *
18 *  The license and distribution terms for this file may be
19 *  found in the file LICENSE in this distribution or at
20 *  http://www.rtems.com/license/LICENSE.
21 *
22 *  $Id$
23 */
24
25#ifndef __RTEMS_FATAL_h
26#define __RTEMS_FATAL_h
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/*
33 *  rtems_fatal_error_occurred
34 *
35 *  DESCRIPTION:
36 *
37 *  This is the routine which implements the rtems_fatal_error_occurred
38 *  directive.  It is invoked when the application or RTEMS
39 *  determines that a fatal error has occurred.
40 */
41
42void rtems_fatal_error_occurred(
43  uint32_t   the_error
44);
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif
51/* end of include file */
Note: See TracBrowser for help on using the repository browser.