summaryrefslogtreecommitdiffstats
path: root/utils/lockd/lockd.c
diff options
context:
space:
mode:
authorhjl <hjl>1999-10-18 23:21:12 +0000
committerhjl <hjl>1999-10-18 23:21:12 +0000
commit8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9 (patch)
tree0904ef8554ed680fe3244fa618685e1fb7ea148b /utils/lockd/lockd.c
downloadnfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.tar.gz
nfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.tar.xz
nfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.zip
Initial revision
Diffstat (limited to 'utils/lockd/lockd.c')
-rw-r--r--utils/lockd/lockd.c35
1 files changed, 35 insertions, 0 deletions
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);
+}