aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fdso.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/fdso.c')
-rw-r--r--litmus/fdso.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/litmus/fdso.c b/litmus/fdso.c
index 85be716941d8..0cd0235d1a7e 100644
--- a/litmus/fdso.c
+++ b/litmus/fdso.c
@@ -19,11 +19,13 @@
19#include <litmus/fdso.h> 19#include <litmus/fdso.h>
20 20
21extern struct fdso_ops fmlp_sem_ops; 21extern struct fdso_ops fmlp_sem_ops;
22extern struct fdso_ops omlp_sem_ops;
22extern struct fdso_ops srp_sem_ops; 23extern struct fdso_ops srp_sem_ops;
23 24
24static const struct fdso_ops* fdso_ops[] = { 25static const struct fdso_ops* fdso_ops[] = {
25 &fmlp_sem_ops, 26 &fmlp_sem_ops,
26 &srp_sem_ops, 27 &srp_sem_ops,
28 &omlp_sem_ops
27}; 29};
28 30
29static void* fdso_create(obj_type_t type) 31static void* fdso_create(obj_type_t type)