diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-09-21 20:08:42 -0400 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-09-21 20:08:42 -0400 |
commit | 1cd1550401e0ed24347919e70cda8cd213409c01 (patch) | |
tree | 5edf60a1499de4b58eccede52cb73e1d581bc0ec | |
parent | 326a585a5452c5bf27ecc893f844eecc3375023d (diff) |
compile fix: type namespace is flat in C
Avoids name clash---we don't need the types anyway.
-rw-r--r-- | include/litmus/rt_param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index e2dd8189d8bf..fc76f4361320 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -73,7 +73,7 @@ struct rt_task { | |||
73 | budget_policy_t budget_policy; /* ignored by pfair */ | 73 | budget_policy_t budget_policy; /* ignored by pfair */ |
74 | 74 | ||
75 | /* parameters used by the semi-partitioned algorithms */ | 75 | /* parameters used by the semi-partitioned algorithms */ |
76 | union _semi_part { | 76 | union { |
77 | /* EDF-WM; defined in sched_edf_wm.c */ | 77 | /* EDF-WM; defined in sched_edf_wm.c */ |
78 | struct edf_wm_params wm; | 78 | struct edf_wm_params wm; |
79 | } semi_part; | 79 | } semi_part; |
@@ -223,7 +223,7 @@ struct rt_param { | |||
223 | struct control_page * ctrl_page; | 223 | struct control_page * ctrl_page; |
224 | 224 | ||
225 | /* runtime info for the semi-part plugins */ | 225 | /* runtime info for the semi-part plugins */ |
226 | union _semi_part { | 226 | union { |
227 | struct { | 227 | struct { |
228 | /* how much time has the job received in the current | 228 | /* how much time has the job received in the current |
229 | * slice */ | 229 | * slice */ |