4.104.114.84.95
Last change
on this file since 1d496f6 was
2ba508b,
checked in by Joel Sherrill <joel.sherrill@…>, on Sep 4, 2003 at 6:54:35 PM
|
2003-09-04 Joel Sherrill <joel@…>
- include/confdefs.h, include/rtems/config.h,
include/rtems/extension.h, include/rtems/fatal.h,
include/rtems/init.h, include/rtems/io.h, include/rtems/mptables.h,
include/rtems/sptables.h, include/rtems/sptables.h.in,
inline/rtems/extension.inl, macros/rtems/extension.inl, src/debug.c,
src/exinit.c, src/extension.c, src/extensioncreate.c,
src/extensiondelete.c, src/extensionident.c, src/fatal.c, src/io.c,
src/itronapi.c, src/posixapi.c, src/rtemsapi.c: URL for license
changed.
|
-
Property mode set to
100644
|
File size:
995 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.rtems.com/license/LICENSE. |
---|
18 | * |
---|
19 | * $Id$ |
---|
20 | */ |
---|
21 | |
---|
22 | #ifndef __RTEMS_FATAL_h |
---|
23 | #define __RTEMS_FATAL_h |
---|
24 | |
---|
25 | #ifdef __cplusplus |
---|
26 | extern "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 | |
---|
39 | void 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.