aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/fdso.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/fdso.c')
-rw-r--r--litmus/fdso.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/litmus/fdso.c b/litmus/fdso.c
index 323efac17a47..16e3a43a67d1 100644
--- a/litmus/fdso.c
+++ b/litmus/fdso.c
@@ -18,6 +18,7 @@
18 18
19#include <litmus/fdso.h> 19#include <litmus/fdso.h>
20 20
21extern struct fdso_ops srp_sem_ops;
21 22
22static struct fdso_ops dummy_ops = { 23static struct fdso_ops dummy_ops = {
23 .create = NULL 24 .create = NULL
@@ -25,7 +26,7 @@ static struct fdso_ops dummy_ops = {
25 26
26static const struct fdso_ops* fdso_ops[] = { 27static const struct fdso_ops* fdso_ops[] = {
27 &dummy_ops, 28 &dummy_ops,
28 &dummy_ops, 29 &srp_sem_ops,
29}; 30};
30 31
31static void* fdso_create(obj_type_t type) 32static void* fdso_create(obj_type_t type)