summaryrefslogtreecommitdiffstats
path: root/utils/lockd
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lockd')
-rw-r--r--utils/lockd/Makefile12
-rw-r--r--utils/lockd/lockd.c35
2 files changed, 47 insertions, 0 deletions
diff --git a/utils/lockd/Makefile b/utils/lockd/Makefile
new file mode 100644
index 0000000..557eebe
--- /dev/null
+++ b/utils/lockd/Makefile
@@ -0,0 +1,12 @@
+#
+# Makefile for lockd
+#
+
+PROGRAM = lockd
+PREFIX = rpc.
+OBJS = lockd.o
+DEPLIBS = $(TOP)support/lib/libfs.a
+LIBS = -lnfs
+#MAN8 = lockd
+
+include $(TOP)rules.mk
diff --git a/utils/lockd/lockd.c b/utils/lockd/lockd.c
new file mode 100644
index 0000000..05bc999
--- /dev/null
+++ b/utils/lockd/lockd.c
@@ -0,0 +1,35 @@
+/*
+ * lockd
+ *
+ * This is the user level part of lockd. This is very primitive, because
+ * all the work is now done in the kernel module.
+ *
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+#include "nfslib.h"
+
+static void usage(const char *);
+
+int
+main(int argc, char **argv)
+{
+ int error;
+
+ if (argc > 1)
+ usage (argv [0]);
+
+ if ((error = lockdsvc()) < 0)
+ perror("lockdsvc");
+
+ return (error != 0);
+}
+
+static void
+usage(const char *prog)
+{
+ fprintf(stderr, "usage:\n%s\n", prog);
+ exit(2);
+}