diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-29 10:43:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-29 10:43:58 +0100 |
commit | 7f14931def91afb3c6533df4e6ff1b6fa17d713c (patch) | |
tree | bcf15d8773f98d1e7ad48b4d4c3c61fa7668c6fb /doc/examples/daemon-depedencies/require.c | |
parent | add almost all examples to info (diff) | |
download | bus-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/require.c')
-rw-r--r-- | doc/examples/daemon-depedencies/require.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/doc/examples/daemon-depedencies/require.c b/doc/examples/daemon-depedencies/require.c deleted file mode 100644 index e378431..0000000 --- a/doc/examples/daemon-depedencies/require.c +++ /dev/null @@ -1,38 +0,0 @@ -#include <bus.h> -#include <stdio.h> -#include <stdlib.h> -#include <stdint.h> -#include <unistd.h> - -#define t(stmt) if (stmt) goto fail - - -static char arg[4098]; - - -int -main(int argc, char *argv[]) -{ - bus_t bus; - int i; - if (argc < 2) - return fprintf(stderr, "USAGE: %s daemon...", *argv), 2; - t(bus_open(&bus, getenv("BUS_INIT"), BUS_WRONLY)); - - for (i = 1; i < argc; i++) { - sprintf(arg, "grep '^%s$' < \"${XDG_RUNTIME_DIR}/started-daemons\" >/dev/null", argv[i]); - if (WEXITSTATUS(system(arg))) { - sprintf(arg, "%ji require %s", (intmax_t)getppid(), argv[i]); - t(bus_write(&bus, arg, 0)); - } - } - - bus_close(&bus); - return 0; - -fail: - perror("require"); - bus_close(&bus); - return 1; -} - |