]> granicus.if.org Git - strace/blob - test/sfd.c
b5ff847a41a228d2f7a10386e5f744594bd0f2e0
[strace] / test / sfd.c
1 #include <fcntl.h>
2 #include <stdio.h>
3
4 int main(int argc, char *argv[])
5 {
6         int pid = atoi(argv[1]);
7         int sfd;
8         char sname[32];
9         char buf[1024];
10         char *s;
11         int i;
12         int signal, blocked, ignore, caught;
13
14         sprintf(sname, "/proc/%d/stat", pid);
15
16         if ((sfd = open(sname, O_RDONLY)) == -1) {
17                 perror(sname);
18                 return 1;
19         }
20
21         i = read(sfd, buf, 1024);
22         buf[i] = '\0';
23
24         for (i = 0, s = buf; i < 30; i++) {
25                 while (*++s != ' ') {
26                         if (!*s)
27                                 break;
28                 }
29         }
30
31         if (sscanf(s, "%d%d%d%d", &signal, &blocked, &ignore, &caught) != 4) {
32                 fprintf(stderr, "/proc/pid/stat format error\n");
33                 return 1;
34         }
35
36         printf("%8x %8x %8x %8x\n", signal, blocked, ignore, caught);
37
38         return 0;
39 }