Fix invalid MAP_xxx flags for PowerPC targets.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3184 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
be58fc7cc7
commit
7ec93196fa
@ -865,9 +865,14 @@ struct target_winsize {
|
||||
#define TARGET_MAP_GROWSDOWN 0x0100 /* stack-like segment */
|
||||
#define TARGET_MAP_DENYWRITE 0x0800 /* ETXTBSY */
|
||||
#define TARGET_MAP_EXECUTABLE 0x1000 /* mark it as an executable */
|
||||
#if defined(TARGET_PPC)
|
||||
#define TARGET_MAP_LOCKED 0x0080 /* pages are locked */
|
||||
#define TARGET_MAP_NORESERVE 0x0040 /* don't check for reservations */
|
||||
#else
|
||||
#define TARGET_MAP_LOCKED 0x2000 /* pages are locked */
|
||||
#define TARGET_MAP_NORESERVE 0x4000 /* don't check for reservations */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(TARGET_I386) || defined(TARGET_ARM)
|
||||
struct target_stat {
|
||||
|
Loading…
Reference in New Issue
Block a user