diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-28 20:58:57 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-28 23:25:40 +0100 |
commit | 5f7056d62c6ecf51bd5e5a1cdc597850a03915c2 (patch) | |
tree | a76f886cd2510638a878399495acf48dce97ebbe /Kernel/VM/SharedInodeVMObject.h | |
parent | 8fbdda5a2dae61d336e5fabcc6b6adf5c8efa308 (diff) | |
download | serenity-5f7056d62c6ecf51bd5e5a1cdc597850a03915c2.zip |
Kernel: Expose the VMObject type of each Region in /proc/PID/vm
Diffstat (limited to 'Kernel/VM/SharedInodeVMObject.h')
-rw-r--r-- | Kernel/VM/SharedInodeVMObject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/VM/SharedInodeVMObject.h b/Kernel/VM/SharedInodeVMObject.h index c8c33206c9..f817ac673c 100644 --- a/Kernel/VM/SharedInodeVMObject.h +++ b/Kernel/VM/SharedInodeVMObject.h @@ -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; }; |