comparison src/cs/riviera/rvm/rvm_ext_priorities.h @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1
2 /*************************************************************************************
3 * *
4 * Name rvm_ext_priorities.h *
5 * *
6 * Function this file priorities defintitions for basic SWEs *
7 * It includes a file *
8 * *
9 * Version 0.1 *
10 * *
11 * Date Modification *
12 * ------------------------------------ *
13 * 10/11/2000 Create *
14 * *
15 * Author Cristian Livadiotti (c-livadiotti@ti.com) *
16 * *
17 * (C) Copyright 2000 by Texas Instruments Incorporated, All Rights Reserved *
18 * *
19 * --------------------------------------------------------------------------------- *
20 * *
21 * History: *
22 * *
23 * 10/18/2001 - Updated for R2D by Christophe Favergeon *
24 * *
25 *************************************************************************************/
26
27 #ifndef __RVM_EXT_PRIORITIES_H_
28 #define __RVM_EXT_PRIORITIES_H_
29
30 /* PRIORITIES SETTING: */
31 /* All user priority should be set under 250: */
32 /* Higher values are reserved */
33
34 /*
35 ** External Priority definitions
36 ** Note that RVM_EXPL_TASK_PRIORITY is used for testing purpose (refer to RTEST).
37 ** Hence, users have to make sure that such a priority is lower than the software
38 ** entity under test, not to starve the system.
39 */
40 #define RVM_EXPL_TASK_PRIORITY (242)
41
42 #define RVM_RGUI_TASK_PRIORITY (240)
43 #define RVM_R2D_TASK_PRIORITY (239)
44
45
46 #define RVM_DEV1_TASK_PRIORITY (245)
47 #define RVM_DEV2_TASK_PRIORITY (245)
48 #define RVM_DEV3_TASK_PRIORITY (245)
49
50 #define RVM_UVM_TASK_PRIORITY (245)
51
52 #define RVM_BTU_TASK_PRIORITY (248) /* was 240 */
53 #define RVM_BTUI_TASK_PRIORITY (240)
54 #define RVM_BTA_TASK_PRIORITY (248) /* rl: was 200 */
55 #define RVM_BTH_TASK_PRIORITY (200)
56
57 #endif /* __RVM_EXT_PRIORITIES_H_ */
58