summaryrefslogtreecommitdiff
path: root/Userland/mm.cpp
blob: 8cd674f255a89a285881e90117de47e96cb14d78 (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
#include <LibC/stdio.h>
#include <LibC/unistd.h>

int main(int c, char** v)
{
    int fd = open("/proc/mm", O_RDONLY);
    if (fd == -1) {
        perror("failed to open /proc/mm");
        return 1;
    }
    for (;;) {
        char buf[128];
        ssize_t nread = read(fd, buf, sizeof(buf));
        if (nread == 0)
            break;
        if (nread < 0) {
            perror("failed to read");
            return 2;
        }
        for (ssize_t i = 0; i < nread; ++i) {
            putchar(buf[i]);
        }
    }
    return 0;
}