FreeCalypso > hg > tcs211-l1-reconst
comparison chipsetsw/riviera/rvt/rvt_env.h @ 0:509db1a7b7b8
initial import: leo2moko-r1
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Jun 2015 03:24:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:509db1a7b7b8 |
---|---|
1 /******************************************************************************* | |
2 * | |
3 * rvt_env.c | |
4 * | |
5 * This module interfaces the environment and contains all start/init/stop... | |
6 * functions of the trace module. | |
7 * | |
8 * (C) Texas Instruments, all rights reserved | |
9 * | |
10 * Version number : 0.1 | |
11 * | |
12 * History : 0.1 (7/4/2000) - Created | |
13 * | |
14 * Date : 7/4/2000 | |
15 * | |
16 * Author : Cristian Livadiotti, c-livadiotti@ti.com | |
17 * | |
18 ******************************************************************************/ | |
19 | |
20 #ifndef __RVT_ENV_H__ | |
21 #define __RVT_ENV_H__ | |
22 | |
23 #include "rvm/rvm_gen.h" | |
24 | |
25 | |
26 typedef enum { RVT_NOT_STARTED, RVT_STARTED } T_RVT_STATE; | |
27 | |
28 extern T_RVF_MB_ID rvt_mb_id; | |
29 | |
30 extern T_RVT_STATE rvt_module_state; | |
31 | |
32 T_RVM_RETURN | |
33 rvt_get_info (T_RVM_INFO_SWE *p_info_swe); | |
34 | |
35 T_RVM_RETURN | |
36 rvt_set_info (T_RVF_ADDR_ID addr_id, | |
37 T_RV_RETURN_PATH return_path[], | |
38 T_RVF_MB_ID bk_id[], | |
39 T_RVM_CB_FUNC rvm_error_ft); | |
40 | |
41 T_RVM_RETURN | |
42 rvt_init (void); | |
43 | |
44 T_RVM_RETURN | |
45 rvt_task_core (void); | |
46 | |
47 T_RVM_RETURN | |
48 rvt_stop (void); | |
49 | |
50 T_RVM_RETURN | |
51 rvt_kill (void); | |
52 | |
53 | |
54 #endif /* __RVT_ENV_H__ */ |