summaryrefslogtreecommitdiff
path: root/Kernel/VM/SharedInodeVMObject.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-28 20:58:57 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-28 23:25:40 +0100
commit5f7056d62c6ecf51bd5e5a1cdc597850a03915c2 (patch)
treea76f886cd2510638a878399495acf48dce97ebbe /Kernel/VM/SharedInodeVMObject.h
parent8fbdda5a2dae61d336e5fabcc6b6adf5c8efa308 (diff)
downloadserenity-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.h2
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;
};