diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-08-17 12:17:36 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-17 12:07:55 +0200 |
commit | fde8f7f538bfacd8ae98c8f8ab86c18609c39783 (patch) | |
tree | 547520ef330f10af35886bdd922b8d4ef6190261 /Kernel/Devices/Device.h | |
parent | 425c356288dbe2c6a01bde6d76e71c1ae0137acf (diff) | |
download | serenity-fde8f7f538bfacd8ae98c8f8ab86c18609c39783.zip |
Kernel: Expose info about source devices of mounts in /proc/df
Diffstat (limited to 'Kernel/Devices/Device.h')
-rw-r--r-- | Kernel/Devices/Device.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Devices/Device.h b/Kernel/Devices/Device.h index 467a81e5ad..9455d4e4a3 100644 --- a/Kernel/Devices/Device.h +++ b/Kernel/Devices/Device.h @@ -20,6 +20,7 @@ public: unsigned minor() const { return m_minor; } virtual String absolute_path(const FileDescription&) const override; + virtual String absolute_path() const; uid_t uid() const { return m_uid; } uid_t gid() const { return m_gid; } |