summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/InodeWatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/FileSystem/InodeWatcher.h')
-rw-r--r--Kernel/FileSystem/InodeWatcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/FileSystem/InodeWatcher.h b/Kernel/FileSystem/InodeWatcher.h
index cd371e2f1a..3396159064 100644
--- a/Kernel/FileSystem/InodeWatcher.h
+++ b/Kernel/FileSystem/InodeWatcher.h
@@ -50,7 +50,7 @@ public:
};
Type type { Type::Invalid };
- String string;
+ unsigned inode_index { 0 };
};
virtual bool can_read(const FileDescription&, size_t) const override;
@@ -61,8 +61,8 @@ public:
virtual const char* class_name() const override { return "InodeWatcher"; };
void notify_inode_event(Badge<Inode>, Event::Type);
- void notify_child_added(Badge<Inode>, const String& child_name);
- void notify_child_removed(Badge<Inode>, const String& child_name);
+ void notify_child_added(Badge<Inode>, const InodeIdentifier& child_id);
+ void notify_child_removed(Badge<Inode>, const InodeIdentifier& child_id);
private:
explicit InodeWatcher(Inode&);