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, 1 insertions, 2 deletions
diff --git a/litmus/fdso.c b/litmus/fdso.c
index 209431f3ce11..b3a95f13d651 100644
--- a/litmus/fdso.c
+++ b/litmus/fdso.c
@@ -18,11 +18,10 @@
18 18
19#include <litmus/fdso.h> 19#include <litmus/fdso.h>
20 20
21extern struct fdso_ops fmlp_sem_ops;
22extern struct fdso_ops generic_lock_ops; 21extern struct fdso_ops generic_lock_ops;
23 22
24static const struct fdso_ops* fdso_ops[] = { 23static const struct fdso_ops* fdso_ops[] = {
25 &fmlp_sem_ops, 24 &generic_lock_ops, /* FMLP_SEM */
26 &generic_lock_ops, /* SRP_SEM */ 25 &generic_lock_ops, /* SRP_SEM */
27}; 26};
28 27