Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:58

0001 /**
0002  * @file
0003  *
0004  * @ingroup ppc_exc
0005  *
0006  * @brief PowerPC Exceptions implementation.
0007  */
0008 
0009 /*
0010  * Copyright (C) 1999 Eric Valette (valette@crf.canon.fr)
0011  *                    Canon Centre Recherche France.
0012  *
0013  * Derived from file "libcpu/powerpc/new-exceptions/bspsupport/vectors_init.c".
0014  *
0015  * The license and distribution terms for this file may be
0016  * found in the file LICENSE in this distribution or at
0017  * http://www.rtems.org/license/LICENSE.
0018  */
0019 
0020 #include <bsp/vectors.h>
0021 
0022 void C_exception_handler(BSP_Exception_frame *excPtr)
0023 {
0024   rtems_fatal(
0025     RTEMS_FATAL_SOURCE_EXCEPTION,
0026     (rtems_fatal_code) excPtr
0027   );
0028 }