]> git.proxmox.com Git - mirror_qemu.git/blame - linux-user/mips/target_mman.h
linux-user: Split TARGET_MAP_* out of syscall_defs.h
[mirror_qemu.git] / linux-user / mips / target_mman.h
CommitLineData
492fe4e7
RH
1#ifndef MIPS_TARGET_MMAN_H
2#define MIPS_TARGET_MMAN_H
3
4#define TARGET_MAP_NORESERVE 0x0400
5#define TARGET_MAP_ANONYMOUS 0x0800
6#define TARGET_MAP_GROWSDOWN 0x1000
7#define TARGET_MAP_DENYWRITE 0x2000
8#define TARGET_MAP_EXECUTABLE 0x4000
9#define TARGET_MAP_LOCKED 0x8000
10#define TARGET_MAP_POPULATE 0x10000
11#define TARGET_MAP_NONBLOCK 0x20000
12#define TARGET_MAP_STACK 0x40000
13#define TARGET_MAP_HUGETLB 0x80000
14
9f22020b 15#include "../generic/target_mman.h"
492fe4e7
RH
16
17#endif