Home | History | Annotate | Download | only in linux
      1 #ifndef _UAPI_LINUX_MEMFD_H
      2 #define _UAPI_LINUX_MEMFD_H
      3 
      4 /* flags for memfd_create(2) (unsigned int) */
      5 #define MFD_CLOEXEC		0x0001U
      6 #define MFD_ALLOW_SEALING	0x0002U
      7 
      8 #endif /* _UAPI_LINUX_MEMFD_H */
      9