From 5f7056d62c6ecf51bd5e5a1cdc597850a03915c2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 28 Feb 2020 20:58:57 +0100 Subject: Kernel: Expose the VMObject type of each Region in /proc/PID/vm --- Kernel/VM/SharedInodeVMObject.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Kernel/VM/SharedInodeVMObject.h') 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; }; -- cgit v1.2.3