mman.h 237 B

12345678910111213141516
  1. #pragma once
  2. #include_next <sys/mman.h>
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define MFD_CLOEXEC 0x0001U
  7. #define MADV_WIPEONFORK 18
  8. int memfd_create(const char *name, unsigned flags);
  9. #ifdef __cplusplus
  10. } // extern "C"
  11. #endif