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
commit b51031bb54
Notes: sideshowbarker 2024-07-19 15:52:46 +09:00
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(); }