Kernel: Add IFBLK, IFLNK, IFSOCK to Inode::Mode
This commit is contained in:
parent
a513bc5749
commit
c9badb5a1c
|
@ -30,7 +30,10 @@ namespace Kernel
|
||||||
IFIFO = 0x1000,
|
IFIFO = 0x1000,
|
||||||
IFCHR = 0x2000,
|
IFCHR = 0x2000,
|
||||||
IFDIR = 0x4000,
|
IFDIR = 0x4000,
|
||||||
|
IFBLK = 0x6000,
|
||||||
IFREG = 0x8000,
|
IFREG = 0x8000,
|
||||||
|
IFLNK = 0xA000,
|
||||||
|
IFSOCK = 0xC000,
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue