]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/blobdiff - frsh_core_types.h
Added the support for POSIX98 symbols (for priority inheritance in mutexes) if AQuoSA...
[frescor/frsh-include.git] / frsh_core_types.h
index 534b0776135ae5c6d1ca753fcb046ce51390916e..a78800055d2a28cc6eb5b90f77d32b9dc702be59 100644 (file)
@@ -98,8 +98,8 @@
 
 /** Kind of workload expected in vres: bounded or indeterminate **/
 typedef enum {
-    FRSH_WT_BOUNDED,
-    FRSH_WT_INDETERMINATE
+    FRSH_WT_BOUNDED       = 0,
+    FRSH_WT_INDETERMINATE = 1
 } frsh_workload_t;
 
 #define FRSH_NULL_DEADLINE     (struct timespec *)NULL
@@ -121,26 +121,24 @@ typedef unsigned int      frsh_vres_id_t;             // => 0
 
 /** Contract ressource type:  processor, network, memory **/
 typedef enum {
-    FRSH_RT_PROCESSOR,
-    FRSH_RT_NETWORK,
-    FRSH_RT_MEMORY
+    FRSH_RT_PROCESSOR = 0,
+    FRSH_RT_NETWORK   = 1,
+    FRSH_RT_MEMORY    = 2,
+    FRSH_RT_DISK      = 3
 } frsh_resource_type_t;
 
 /** Ressource Id: processor_id or network_id **/
 /**********************************************/
 typedef unsigned int frsh_resource_id_t;
 
-/** This defines 1 resource_id value for systems that have only one
-    resource of a kind. **/
-#define FRSH_RESOURCE_ID_DEFAULT 0
-#define FRSH_CPU_ID_DEFAULT 0
-#define FRSH_NETWORK_ID_DEFAULT 0
-
 /** Kind of contract: regular, background or dummy **/
-typedef enum {FRSH_CT_REGULAR, FRSH_CT_BACKGROUND, FRSH_CT_DUMMY} frsh_contract_type_t;
+typedef enum {
+        FRSH_CT_REGULAR    = 0,
+        FRSH_CT_BACKGROUND = 1,
+        FRSH_CT_DUMMY      = 2
+} frsh_contract_type_t;
 
 // The name of this constant has been updated to have the FRSH_ prefix
-#define FRSH_CONTRACT_LABEL_MAXLENGTH 15
 typedef char frsh_contract_label_t[FRSH_CONTRACT_LABEL_MAXLENGTH + 1];
 
 /**