blob: afe957b87c4e52760cab036e1a86e47dda7d1abe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <bus.h>
#include <stdio.h>
#include <unistd.h>
#include <stdint.h>
#define t(stmt) if (stmt) goto fail
static char message[BUS_MEMORY_SIZE];
int
main(int argc, char *argv[])
{
bus_t bus;
if (argc < 2) {
fprintf(stderr, "%s: USAGE: %s message\n", argv[0], argv[0]);
return 2;
}
sprintf(message, "0 %s", argv[1]);
t(bus_open(&bus, "/tmp/example-bus", BUS_WRONLY));
t(bus_write(&bus, message, BUS_NOWAIT));
bus_close(&bus);
return 0;
fail:
perror("write");
bus_close(&bus);
return 1;
}
|