diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-02-26 09:18:05 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-02-26 09:18:05 -0500 |
commit | fb807645f92cdb0239bc831746d8a1bcc04ce1bb (patch) | |
tree | 728013b1d8991807556a6ef098dcbf1f457e003d | |
parent | 173c328f23f5c8b3519068f731a6db35488bbd25 (diff) |
Remove prototype for non-existing system call.
This syscall hasn't been around since Fall 2007... The RTCSA'08 paper
details how we are doing it now.
-rw-r--r-- | include/litmus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/litmus.h b/include/litmus.h index f8764cc..6d0ad40 100644 --- a/include/litmus.h +++ b/include/litmus.h | |||
@@ -54,12 +54,13 @@ static inline int od_open(int fd, obj_type_t type, int obj_id) | |||
54 | return od_openx(fd, type, obj_id, 0); | 54 | return od_openx(fd, type, obj_id, 0); |
55 | } | 55 | } |
56 | 56 | ||
57 | /* FMLP support */ | 57 | /* FMLP binary semaphore support */ |
58 | int fmlp_down(int od); | 58 | int fmlp_down(int od); |
59 | int fmlp_up(int od); | 59 | int fmlp_up(int od); |
60 | |||
61 | /* SRP binary semaphore support */ | ||
60 | int srp_down(int od); | 62 | int srp_down(int od); |
61 | int srp_up(int od); | 63 | int srp_up(int od); |
62 | int reg_task_srp_sem(int od); | ||
63 | 64 | ||
64 | /* job control*/ | 65 | /* job control*/ |
65 | int get_job_no(unsigned int* job_no); | 66 | int get_job_no(unsigned int* job_no); |