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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <signal.h>
#include <stdlib.h>
#include "timestamp.h"
static int fd;
static void on_sigint(int sig)
{
close(fd);
exit(0);
}
static int enable_events(int fd, char* str)
{
unsigned long id;
unsigned long cmd[3];
if (!str2event(str, &id))
return 0;
cmd[0] = ENABLE_CMD;
cmd[1] = id;
cmd[2] = id + 1;
return write(fd, cmd, 3 * sizeof(long)) == 3 * sizeof(long);
}
static void cat2stdout(int fd)
{
static char buf[4096];
int rd;
while ((rd = read(fd, buf, 4096)))
fwrite(buf, 1, rd, stdout);
}
static void usage(void)
{
fprintf(stderr,
"Usage: ftcat <ft device> TS1 TS2 ....\n\n"
// "where TS1, TS2, ... is one of "
// " sched, tick, plug_tick, plug_sche"
"\n");
exit(1);
}
int main(int argc, char** argv)
{
if (argc < 3)
usage();
fd = open(argv[1], O_RDWR);
if (fd < 0) {
perror("could not open feathertrace");
return 1;
}
argc -= 2;
argv += 2;
signal(SIGINT,on_sigint);
while (argc--) {
if (!enable_events(fd, *argv)) {
fprintf(stderr, "Enabling %s failed.\n", *argv);
return 2;
}
argv++;
}
cat2stdout(fd);
close(fd);
return 0;
}
|