diff options
Diffstat (limited to 'linux-headers/asm-arm/mman.h')
-rw-r--r-- | linux-headers/asm-arm/mman.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-headers/asm-arm/mman.h b/linux-headers/asm-arm/mman.h new file mode 100644 index 0000000000..41f99c573b --- /dev/null +++ b/linux-headers/asm-arm/mman.h @@ -0,0 +1,4 @@ +#include <asm-generic/mman.h> + +#define arch_mmap_check(addr, len, flags) \ + (((flags) & MAP_FIXED && (addr) < FIRST_USER_ADDRESS) ? -EINVAL : 0) |