diff options
Diffstat (limited to 'doc/examples/daemon-depedencies/announce.c')
-rw-r--r-- | doc/examples/daemon-depedencies/announce.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/doc/examples/daemon-depedencies/announce.c b/doc/examples/daemon-depedencies/announce.c deleted file mode 100644 index d928adb..0000000 --- a/doc/examples/daemon-depedencies/announce.c +++ /dev/null @@ -1,28 +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; - if (argc < 3) - return fprintf(stderr, "USAGE: %s state daemon", *argv), 2; - t(bus_open(&bus, getenv("BUS_INIT"), BUS_WRONLY)); - sprintf(arg, "%ji %s %s", (intmax_t)getppid(), argv[1], argv[2]); - t(bus_write(&bus, arg, 0)); - t(bus_close(&bus)); - return 0; - -fail: - perror("announce"); - return 1; -} |