source: rtems/cpukit/sapi/src/exshutdown.c @ f68401e

4.115
Last change on this file since f68401e was 83bf105, checked in by Sebastian Huber <sebastian.huber@…>, on 02/19/14 at 09:57:46

score: Rename _Internal_error_Occurred()

Rename _Internal_error_Occurred() into _Terminate().

  • Property mode set to 100644
File size: 831 bytes
Line 
1/*
2 *  Initialization Manager
3 *
4 *  COPYRIGHT (c) 1989-2011.
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
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/init.h>
17#include <rtems/score/interr.h>
18
19void rtems_shutdown_executive( uint32_t result )
20{
21  _Terminate( RTEMS_FATAL_SOURCE_EXIT, false, result );
22
23  /***************************************************************
24   ***************************************************************
25   *   SYSTEM SHUTS DOWN!!!  WE DO NOT RETURN TO THIS POINT!!!   *
26   ***************************************************************
27   ***************************************************************/
28}
Note: See TracBrowser for help on using the repository browser.