aboutsummaryrefslogtreecommitdiffstats
path: root/src/syscalls.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@koruna.(none)>2010-07-13 13:35:41 -0400
committerGlenn Elliott <gelliott@koruna.(none)>2010-07-13 13:35:41 -0400
commit92ff5288be6a6e760b8c727965bd7e0c6eda704e (patch)
treeb6f0727cee03c5b15c280a08b2cc1cc88ab26abf /src/syscalls.c
parente9c900fae35e4e4730469e189ff17bf30518346a (diff)
Updated liblitmus to support OMLP.wip-omlp-gedf
Diffstat (limited to 'src/syscalls.c')
-rw-r--r--src/syscalls.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/syscalls.c b/src/syscalls.c
index 77a6277..7309550 100644
--- a/src/syscalls.c
+++ b/src/syscalls.c
@@ -61,6 +61,16 @@ int srp_up(int od)
61 return syscall(__NR_srp_up, od); 61 return syscall(__NR_srp_up, od);
62} 62}
63 63
64int omlp_down(int od)
65{
66 return syscall(__NR_omlp_down, od);
67}
68
69int omlp_up(int od)
70{
71 return syscall(__NR_omlp_up, od);
72}
73
64int get_job_no(unsigned int *job_no) 74int get_job_no(unsigned int *job_no)
65{ 75{
66 return syscall(__NR_query_job_no, job_no); 76 return syscall(__NR_query_job_no, job_no);