diff options
Diffstat (limited to 'test/syscalls')
-rw-r--r-- | test/syscalls/linux/memfd.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/syscalls/linux/memfd.cc b/test/syscalls/linux/memfd.cc index 7e103124b..3494bcd13 100644 --- a/test/syscalls/linux/memfd.cc +++ b/test/syscalls/linux/memfd.cc @@ -38,8 +38,15 @@ namespace { // The header sys/memfd.h isn't available on all systems, so redefining some of // the constants here. #define F_LINUX_SPECIFIC_BASE 1024 + +#ifndef F_ADD_SEALS #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9) +#endif /* F_ADD_SEALS */ + +#ifndef F_GET_SEALS #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10) +#endif /* F_GET_SEALS */ + #define F_SEAL_SEAL 0x0001 #define F_SEAL_SHRINK 0x0002 #define F_SEAL_GROW 0x0004 |