aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-01 12:56:59 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-01 12:56:59 -0400
commiteddde9f7fd0442ad2c097988845b9f0e451dbd2f (patch)
tree2a67dc53900ad5bffe4ecf346a7ab067a374cab7 /include
parent117de7edd6eec435e01a0f734e3d10b2ba5c5db3 (diff)
API change: PI->FMLP
Diffstat (limited to 'include')
-rw-r--r--include/litmus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/litmus.h b/include/litmus.h
index 5c50204..1b0d006 100644
--- a/include/litmus.h
+++ b/include/litmus.h
@@ -24,7 +24,7 @@ int sporadic_task(lt_t e, lt_t p, lt_t phase,
24 24
25/* file descriptor attached shared objects support */ 25/* file descriptor attached shared objects support */
26typedef enum { 26typedef enum {
27 PI_SEM = 0, 27 FMLP_SEM = 0,
28 SRP_SEM = 1, 28 SRP_SEM = 1,
29} obj_type_t; 29} obj_type_t;
30 30
@@ -37,8 +37,8 @@ static inline int od_open(int fd, obj_type_t type, int obj_id)
37} 37}
38 38
39/* FMLP support */ 39/* FMLP support */
40int pi_down(int od); 40int fmlp_down(int od);
41int pi_up(int od); 41int fmlp_up(int od);
42int srp_down(int od); 42int srp_down(int od);
43int srp_up(int od); 43int srp_up(int od);
44int reg_task_srp_sem(int od); 44int reg_task_srp_sem(int od);