1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:08:12 +00:00

Kernel: Move VFS-internal O_FOO definitions to VirtualFileSystem.h

This commit is contained in:
Andreas Kling 2021-08-14 19:46:18 +02:00
parent b47c7a2c38
commit dcb015fa7e
2 changed files with 4 additions and 3 deletions

View file

@ -23,6 +23,10 @@
namespace Kernel {
// Kernel internal options.
#define O_NOFOLLOW_NOERROR (1 << 29)
#define O_UNLINK_INTERNAL (1 << 30)
struct UidAndGid {
uid_t uid;
gid_t gid;