1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

Kernel: Add a /proc/all process table dump.

This will be useful for implementing some process-related utilities.
This commit is contained in:
Andreas Kling 2019-02-03 18:53:18 +01:00
parent dddd0e7b03
commit b51031bb54
5 changed files with 83 additions and 4 deletions

View file

@ -162,7 +162,8 @@ public:
bool page_in();
int commit();
size_t committed() const;
size_t amount_resident() const;
size_t amount_shared() const;
PageDirectory* page_directory() { return m_page_directory.ptr(); }