summaryrefslogtreecommitdiff
path: root/contrib/getdents-debug/getdents_c/getdents.c
blob: 936bd0b33cd19e2070887141be8aca32ed53d77d (plain)
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
// See ../getdents/getdents.go for some info on why
// this exists.

#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <errno.h>

int main(int argc, char *argv[])
{
    if(argc != 2) {
        printf("Usage: %s PATH\n", argv[0]);
        printf("Run getdents(2) on PATH in a 100ms loop\n");
        exit(1);
    }

    const char *path = argv[1];

    for (int i = 1 ; ; i ++ ) {
        int fd = open(path, O_RDONLY);
        if (fd == -1) {
            perror("open");
            exit(1);
        }

        char tmp[10000];
        int sum = 0;
        printf("%3d: getdents64: ", i);
        for ( ; ; ) {
            int n = syscall(SYS_getdents64, fd, tmp, sizeof(tmp));
            printf("n=%d; ", n);
            if (n <= 0) {
                printf("errno=%d total %d bytes\n", errno, sum);
                if (n < 0) {
                    exit(1);
                }
                break;
            }
            sum += n;
        }
        close(fd);
        usleep(100000);
    }
}