aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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);