Files
linux-apfs/arch/s390/include/asm/mman.h
T

20 lines
420 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* include/asm-s390/mman.h
*
* S390 version
*
* Derived from "include/asm-i386/mman.h"
*/
#ifndef __S390_MMAN_H__
#define __S390_MMAN_H__
2009-09-21 17:03:48 -07:00
#include <asm-generic/mman.h>
2005-04-16 15:20:36 -07:00
2009-03-18 13:27:37 +01:00
#if defined(__KERNEL__) && !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
int s390_mmap_check(unsigned long addr, unsigned long len);
#define arch_mmap_check(addr,len,flags) s390_mmap_check(addr,len)
#endif
2005-04-16 15:20:36 -07:00
#endif /* __S390_MMAN_H__ */