diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2009-12-17 21:36:40 -0500 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-29 17:16:49 -0400 |
commit | 269cf3c49cef2b23605e98ad4a8133357bebaac0 (patch) | |
tree | dd0d7f3d08f4f00069be8698183b5166e01f5030 /litmus/fdso.c | |
parent | 5442a8adfce93c1cd556e04bfc0a118adc3b683e (diff) |
[ported from 2008.3] Add FMLP support
Diffstat (limited to 'litmus/fdso.c')
-rw-r--r-- | litmus/fdso.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/litmus/fdso.c b/litmus/fdso.c index 16e3a43a67d1..7a16f640715c 100644 --- a/litmus/fdso.c +++ b/litmus/fdso.c | |||
@@ -18,14 +18,11 @@ | |||
18 | 18 | ||
19 | #include <litmus/fdso.h> | 19 | #include <litmus/fdso.h> |
20 | 20 | ||
21 | extern struct fdso_ops fmlp_sem_ops; | ||
21 | extern struct fdso_ops srp_sem_ops; | 22 | extern struct fdso_ops srp_sem_ops; |
22 | 23 | ||
23 | static struct fdso_ops dummy_ops = { | ||
24 | .create = NULL | ||
25 | }; | ||
26 | |||
27 | static const struct fdso_ops* fdso_ops[] = { | 24 | static const struct fdso_ops* fdso_ops[] = { |
28 | &dummy_ops, | 25 | &fmlp_sem_ops, |
29 | &srp_sem_ops, | 26 | &srp_sem_ops, |
30 | }; | 27 | }; |
31 | 28 | ||