mman.h 397 B

12345678910111213141516171819
  1. /*
  2. * S390 version
  3. *
  4. * Derived from "include/asm-i386/mman.h"
  5. */
  6. #ifndef __S390_MMAN_H__
  7. #define __S390_MMAN_H__
  8. #include <asm-generic/mman.h>
  9. #if defined(__KERNEL__)
  10. #if !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
  11. int s390_mmap_check(unsigned long addr, unsigned long len);
  12. #define arch_mmap_check(addr,len,flags) s390_mmap_check(addr,len)
  13. #endif
  14. #endif
  15. #endif /* __S390_MMAN_H__ */