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
commit 5f7056d62c
Notes: sideshowbarker 2024-07-19 08:58:59 +09:00
6 changed files with 11 additions and 0 deletions

View file

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