diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 16:46:21 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 16:46:21 -0400 |
commit | b71e2f3c0796b66d118fd0166ae80c7d9a547740 (patch) | |
tree | e6d5843888e3ba43cbc9b5b705c892b00c88f2f1 /src/syscalls.c | |
parent | ff87ca319b0cd76f96f78f0347ad9aaa967bb16e (diff) | |
parent | 7bd1ec8308f63bffda37127d02a178c5fc91dac3 (diff) |
Removed mixed-criticality codewip-color-jlh
Diffstat (limited to 'src/syscalls.c')
-rw-r--r-- | src/syscalls.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/syscalls.c b/src/syscalls.c index ef1ea17..c68f15b 100644 --- a/src/syscalls.c +++ b/src/syscalls.c | |||
@@ -8,8 +8,6 @@ | |||
8 | /* for syscall() */ | 8 | /* for syscall() */ |
9 | #include <unistd.h> | 9 | #include <unistd.h> |
10 | 10 | ||
11 | //#include <sys/types.h> | ||
12 | |||
13 | #include "litmus.h" | 11 | #include "litmus.h" |
14 | 12 | ||
15 | /* Syscall stub for setting RT mode and scheduling options */ | 13 | /* Syscall stub for setting RT mode and scheduling options */ |
@@ -88,8 +86,3 @@ int null_call(cycles_t *timestamp) | |||
88 | { | 86 | { |
89 | return syscall(__NR_null_call, timestamp); | 87 | return syscall(__NR_null_call, timestamp); |
90 | } | 88 | } |
91 | |||
92 | int set_rt_task_mc_param(pid_t pid, struct mc_task *param) | ||
93 | { | ||
94 | return syscall(__NR_set_rt_task_mc_param, pid, param); | ||
95 | } | ||