diff options
author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2014-06-14 11:15:00 -0400 |
---|---|---|
committer | Namhoon Kim <namhoonk@cs.unc.edu> | 2014-11-03 21:57:28 -0500 |
commit | 70f269792d87c26f03a93c6715ea351c2eee62a3 (patch) | |
tree | 697c69836f61c228669cca69e704afa8e0df9bdd /include | |
parent | abd10c08d222f23322ba91cc493ef1095bdb5f86 (diff) |
Add void* plugin_state pointer to task_struct
Diffstat (limited to 'include')
-rw-r--r-- | include/litmus/rt_param.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index e26535b32bd1..060b5d745213 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -249,7 +249,10 @@ struct rt_param { | |||
249 | volatile int linked_on; | 249 | volatile int linked_on; |
250 | 250 | ||
251 | /* PFAIR/PD^2 state. Allocated on demand. */ | 251 | /* PFAIR/PD^2 state. Allocated on demand. */ |
252 | struct pfair_param* pfair; | 252 | union { |
253 | void *plugin_state; | ||
254 | struct pfair_param *pfair; | ||
255 | }; | ||
253 | 256 | ||
254 | /* Fields saved before BE->RT transition. | 257 | /* Fields saved before BE->RT transition. |
255 | */ | 258 | */ |