1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

Kernel: Expose the VMObject type of each Region in /proc/PID/vm

This commit is contained in:
Andreas Kling 2020-02-28 20:58:57 +01:00
parent 8fbdda5a2d
commit 5f7056d62c
6 changed files with 11 additions and 0 deletions

View file

@ -45,6 +45,8 @@ private:
explicit SharedInodeVMObject(Inode&, size_t);
explicit SharedInodeVMObject(const SharedInodeVMObject&);
virtual const char* class_name() const override { return "SharedInodeVMObject"; }
SharedInodeVMObject& operator=(const SharedInodeVMObject&) = delete;
};