diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2013-03-12 13:02:09 -0400 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2013-03-12 13:41:53 -0400 |
commit | fccb957780cf9685539b1d0717a5193248b30e48 (patch) | |
tree | efeb2cfdb990b5250c6b2b76d5db68f89cd4cb3c /include | |
parent | 0a54a84457bb8a33113c7dd2a2b63b2a837cc92e (diff) |
Add init_rt_task_param().
Adds init_rt_task_param(). Facilitates setting up default
real-time task attributes that cannot be set by memset(0).
Diffstat (limited to 'include')
-rw-r--r-- | include/litmus.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/litmus.h b/include/litmus.h index 335d01b..429e614 100644 --- a/include/litmus.h +++ b/include/litmus.h | |||
@@ -18,6 +18,8 @@ extern "C" { | |||
18 | 18 | ||
19 | #include "migration.h" | 19 | #include "migration.h" |
20 | 20 | ||
21 | |||
22 | void init_rt_task_param(struct rt_task* param); | ||
21 | int set_rt_task_param(pid_t pid, struct rt_task* param); | 23 | int set_rt_task_param(pid_t pid, struct rt_task* param); |
22 | int get_rt_task_param(pid_t pid, struct rt_task* param); | 24 | int get_rt_task_param(pid_t pid, struct rt_task* param); |
23 | 25 | ||