QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
574 B
17 lines
574 B
#ifndef MIPS_TARGET_MMAN_H
|
|
#define MIPS_TARGET_MMAN_H
|
|
|
|
#define TARGET_MAP_NORESERVE 0x0400
|
|
#define TARGET_MAP_ANONYMOUS 0x0800
|
|
#define TARGET_MAP_GROWSDOWN 0x1000
|
|
#define TARGET_MAP_DENYWRITE 0x2000
|
|
#define TARGET_MAP_EXECUTABLE 0x4000
|
|
#define TARGET_MAP_LOCKED 0x8000
|
|
#define TARGET_MAP_POPULATE 0x10000
|
|
#define TARGET_MAP_NONBLOCK 0x20000
|
|
#define TARGET_MAP_STACK 0x40000
|
|
#define TARGET_MAP_HUGETLB 0x80000
|
|
|
|
#include "../generic/target_mman.h"
|
|
|
|
#endif
|
|
|