summaryrefslogtreecommitdiff
path: root/Userland/mm.cpp
AgeCommit message (Collapse)Author
2019-06-07Userland: Run clang-format on everything.Andreas Kling
2019-06-02Userland: Use CFile in mmRobin Burchell
2018-11-17Various stubs while trying to get an old coreutils to build.Andreas Kling
2018-11-09Fix all current build warnings in the userland.Andreas Kling
2018-10-28Add basic symlink support.Andreas Kling
- sys$readlink + readlink() - Add a /proc/PID/exe symlink to the process's executable. - Print symlink contents in ls output. - Some work on plumbing options into VFS::open().
2018-10-28Add /proc/mm and a /bin/mm utility that just dumps it.Andreas Kling
This shows some info about the MM. Right now it's just the zone count and the number of free physical pages. Lots more can be added. Also added "exit" to sh so we can nest shells and exit from them. I also noticed that we were leaking all the physical pages, so fixed that.