Kernel: Add IFBLK, IFLNK, IFSOCK to Inode::Mode

This commit is contained in:
Bananymous 2023-03-30 12:19:33 +03:00
parent a513bc5749
commit c9badb5a1c
1 changed files with 3 additions and 0 deletions

View File

@ -30,7 +30,10 @@ namespace Kernel
IFIFO = 0x1000,
IFCHR = 0x2000,
IFDIR = 0x4000,
IFBLK = 0x6000,
IFREG = 0x8000,
IFLNK = 0xA000,
IFSOCK = 0xC000,
};
public: