aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fdso.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/fdso.c')
-rw-r--r--litmus/fdso.c7
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
21extern struct fdso_ops fmlp_sem_ops;
21extern struct fdso_ops srp_sem_ops; 22extern struct fdso_ops srp_sem_ops;
22 23
23static struct fdso_ops dummy_ops = {
24 .create = NULL
25};
26
27static const struct fdso_ops* fdso_ops[] = { 24static 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