comparison src/cs/services/dar/dar_emergency.h @ 0:4e78acac3d88

src/{condat,cs,gpf,nucleus}: import from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 06:23:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4e78acac3d88
1 /****************************************************************************/
2 /* */
3 /* File Name: dar_emergency.h */
4 /* */
5 /* Purpose: This function contains the functions prototypes of the DAR */
6 /* entity when emergencies occured. */
7 /* */
8 /* Version 0.1 */
9 /* */
10 /* Date Modification */
11 /* ------------------------------------ */
12 /* 17 October 2001 Create */
13 /* */
14 /* Author Stephanie Gerthoux */
15 /* */
16 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved*/
17 /****************************************************************************/
18
19 #ifndef __DAR_EMERGENCY_H_
20 #define __DAR_EMERGENCY_H_
21
22 #include "rv/rv_defined_swe.h"
23
24 #ifdef RVM_DAR_SWE
25
26 #include "rvm/rvm_gen.h"
27
28 /* Functions prototypes */
29 T_RV_RET dar_process_emergency( T_DAR_INFO *buffer_p,
30 T_DAR_FORMAT format,
31 T_RVM_USE_ID dar_use_id,
32 UINT32 flags);
33 void dar_exception_arm_undefined(void);
34 void dar_exception_arm_swi(void);
35 void dar_exception_arm_abort_prefetch(void);
36 void dar_exception_arm_abort_data(void);
37 void dar_exception_arm_reserved(void);
38
39 #endif /* #ifdef RVM_DAR_SWE */
40
41 void dar_exception(int abort_type);
42
43 #endif /* __DAR_EMERGENCY_H_ */