aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2010-02-26 09:18:05 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2010-02-26 09:18:05 -0500
commitfb807645f92cdb0239bc831746d8a1bcc04ce1bb (patch)
tree728013b1d8991807556a6ef098dcbf1f457e003d
parent173c328f23f5c8b3519068f731a6db35488bbd25 (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.h5
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 */
58int fmlp_down(int od); 58int fmlp_down(int od);
59int fmlp_up(int od); 59int fmlp_up(int od);
60
61/* SRP binary semaphore support */
60int srp_down(int od); 62int srp_down(int od);
61int srp_up(int od); 63int srp_up(int od);
62int reg_task_srp_sem(int od);
63 64
64/* job control*/ 65/* job control*/
65int get_job_no(unsigned int* job_no); 66int get_job_no(unsigned int* job_no);