summaryrefslogtreecommitdiff
path: root/Kernel/VirtualFileSystem.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-31 06:13:55 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-31 06:13:55 +0100
commitfc0b63ca3c4af109c155c5a572afe03621b9d20e (patch)
tree32298eb4e4ceed529aa670e7c24630c026701e04 /Kernel/VirtualFileSystem.h
parent34e745b0b46ad9e1cb8a9184c89f09fed2deebe6 (diff)
downloadserenity-fc0b63ca3c4af109c155c5a572afe03621b9d20e.zip
Kernel: Include absolute paths of mount points in /proc/mounts
Diffstat (limited to 'Kernel/VirtualFileSystem.h')
-rw-r--r--Kernel/VirtualFileSystem.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/VirtualFileSystem.h b/Kernel/VirtualFileSystem.h
index fa171f4c15..df54222a93 100644
--- a/Kernel/VirtualFileSystem.h
+++ b/Kernel/VirtualFileSystem.h
@@ -79,6 +79,7 @@ public:
void for_each_mount(Function<void(const Mount&)>) const;
String absolute_path(Inode&);
+ String absolute_path(InodeIdentifier);
InodeIdentifier root_inode_id() const;
Inode* root_inode() { return m_root_inode.ptr(); }