diff options
Diffstat (limited to 'libc/kernel/uapi/linux/fcntl.h')
-rw-r--r-- | libc/kernel/uapi/linux/fcntl.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/libc/kernel/uapi/linux/fcntl.h b/libc/kernel/uapi/linux/fcntl.h index fc18d87..b888dc9 100644 --- a/libc/kernel/uapi/linux/fcntl.h +++ b/libc/kernel/uapi/linux/fcntl.h @@ -24,25 +24,32 @@ #define F_GETLEASE (F_LINUX_SPECIFIC_BASE + 1) #define F_CANCELLK (F_LINUX_SPECIFIC_BASE + 5) #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6) -#define F_NOTIFY (F_LINUX_SPECIFIC_BASE+2) +#define F_NOTIFY (F_LINUX_SPECIFIC_BASE + 2) /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7) #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8) +#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9) +#define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10) +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ +#define F_SEAL_SEAL 0x0001 +#define F_SEAL_SHRINK 0x0002 +#define F_SEAL_GROW 0x0004 +#define F_SEAL_WRITE 0x0008 +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define DN_ACCESS 0x00000001 #define DN_MODIFY 0x00000002 -/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define DN_CREATE 0x00000004 #define DN_DELETE 0x00000008 +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define DN_RENAME 0x00000010 #define DN_ATTRIB 0x00000020 -/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define DN_MULTISHOT 0x80000000 -#define AT_FDCWD -100 +#define AT_FDCWD - 100 +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define AT_SYMLINK_NOFOLLOW 0x100 #define AT_REMOVEDIR 0x200 -/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define AT_SYMLINK_FOLLOW 0x400 #define AT_NO_AUTOMOUNT 0x800 +/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define AT_EMPTY_PATH 0x1000 #endif -/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ |