source: rtems/doc/supplements/arm/fatalerr.t @ 6c243f11

4.104.114.84.95
Last change on this file since 6c243f11 was 8d7393a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/30/02 at 21:43:53

2002-07-30 Joel Sherrill <joel@…>

  • BSP_TIMES, ChangeLog?, Makefile.am, arm.texi, bsp.t, callconv.t, cpumodel.t, cputable.t, fatalerr.t, intr_NOTIMES.t, memmodel.t, preface.texi, stamp-vti, timeBSP.t, timing.texi, version.texi, wksheets.texi: New files as ARM supplement initial version added.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-2002.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Default Fatal Error Processing
10
11@section Introduction
12
13Upon detection of a fatal error by either the
14application or RTEMS the fatal error manager is invoked.  The
15fatal error manager will invoke the user-supplied fatal error
16handlers.  If no user-supplied handlers are configured,  the
17RTEMS provided default fatal error handler is invoked.  If the
18user-supplied fatal error handlers return to the executive the
19default fatal error handler is then invoked.  This chapter
20describes the precise operations of the default fatal error
21handler.
22
23@section Default Fatal Error Handler Operations
24
25The default fatal error handler which is invoked by
26the @code{rtems_fatal_error_occurred} directive when there is
27no user handler configured or the user handler returns control to
28RTEMS.  The default fatal error handler performs the
29following actions:
30
31@itemize @bullet
32@item disables processor interrupts,
33@item places the error code in @b{r0}, and
34@item executes an infinite loop (@code{while(0);} to
35simulate a halt processor instruction.
36@end itemize
37
Note: See TracBrowser for help on using the repository browser.