source: rtems/bsps/sparc/shared/start/bsp_fatal_exit.c @ 828276b

5
Last change on this file since 828276b was 828276b, checked in by Sebastian Huber <sebastian.huber@…>, on 03/05/19 at 06:58:18

bsps: Adjust shared Doxygen groups

Update #3706.

  • Property mode set to 100644
File size: 465 bytes
Line 
1/**
2 * @file
3 * @ingroup RTEMSBSPsSPARCShared
4 * @brief ERC32/LEON2/LEON3 BSP specific exit handler.
5 */
6
7/*
8 *  COPYRIGHT (c) 2014.
9 *  Aeroflex Gaisler AB.
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.org/license/LICENSE.
14 */
15
16#include <bsp.h>
17#include <rtems/score/cpu.h>
18
19void BSP_fatal_exit(uint32_t error)
20{
21  sparc_syscall_exit(RTEMS_FATAL_SOURCE_BSP, error);
22}
Note: See TracBrowser for help on using the repository browser.