aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/daemon-depedencies/start-daemon.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-29 10:43:58 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-29 10:43:58 +0100
commit7f14931def91afb3c6533df4e6ff1b6fa17d713c (patch)
treebcf15d8773f98d1e7ad48b4d4c3c61fa7668c6fb /doc/examples/daemon-depedencies/start-daemon.c
parentadd almost all examples to info (diff)
downloadbus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.gz
bus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.bz2
bus-7f14931def91afb3c6533df4e6ff1b6fa17d713c.tar.xz
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'doc/examples/daemon-depedencies/start-daemon.c')
-rw-r--r--doc/examples/daemon-depedencies/start-daemon.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/doc/examples/daemon-depedencies/start-daemon.c b/doc/examples/daemon-depedencies/start-daemon.c
deleted file mode 100644
index 7c224d5..0000000
--- a/doc/examples/daemon-depedencies/start-daemon.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#include <bus.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#define t(stmt) if (stmt) goto fail
-
-
-static char arg[4098];
-
-
-int
-main(int argc, char *argv[])
-{
- if (argc != 2)
- return fprintf(stderr, "This program should be called from ./init\n"), 2;
-
- sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/started-daemons\" >/dev/null", argv[1]);
- if (!WEXITSTATUS(system(arg)))
- return 0;
- sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/ready-daemons\" >/dev/null", argv[1]);
- if (!WEXITSTATUS(system(arg)))
- return 0;
-
- sprintf(arg, "./%s", argv[1]);
- execlp(arg, arg, NULL);
- perror("start-daemon");
- return 1;
-}
-