1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:27:44 +00:00

FileSystem: Add a Custody class that represents a parent/child guardianship.

A custody is kind of a directory entry abstraction that represents a single
entry in a parent directory that tells us the name of a child inode.

The idea here is for path resolution to produce a chain of custody objects.
This commit is contained in:
Andreas Kling 2019-05-30 17:46:08 +02:00
parent 3a1d5fa112
commit 4cb87b1753
5 changed files with 141 additions and 0 deletions

View file

@ -50,6 +50,7 @@ KERNEL_OBJS = \
ProcessTracer.o \
Devices/PCSpeaker.o \
FileSystem/InodeFile.o \
FileSystem/Custody.o \
File.o
VFS_OBJS = \