source: rtems/cpukit/sapi/src/fatal.c @ f26145b

4.104.114.84.95
Last change on this file since f26145b was 16351f7a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 02:04:21

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

  • sapi/src/debug.c, sapi/src/exinit.c, sapi/src/extension.c, sapi/src/extensioncreate.c, sapi/src/extensiondelete.c, sapi/src/extensionident.c, sapi/src/fatal.c, sapi/src/io.c, sapi/src/itronapi.c, sapi/src/posixapi.c, sapi/src/rtemsapi.c: Include config.h.
  • Property mode set to 100644
File size: 810 bytes
Line 
1/*
2 *  Fatal Error Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/system.h>
19#include <rtems/fatal.h>
20#include <rtems/score/interr.h>
21
22/*PAGE
23 *
24 *  rtems_fatal_error_occurred
25 *
26 *  This directive will invoke the internal fatal error handler.
27 *
28 *  Input parameters:
29 *    the_error - fatal error status code
30 *
31 *  Output parameters: NONE
32 */
33
34void rtems_fatal_error_occurred(
35  uint32_t   the_error
36)
37{
38  _Internal_error_Occurred( INTERNAL_ERROR_RTEMS_API, FALSE, the_error );
39
40/* will not return from this routine */
41}
Note: See TracBrowser for help on using the repository browser.