powerpc{64}: fix MAP_NORESERVE and MAP_LOCKED in mman.h

MAP_{NORESERVE,LOCKED} have different values on powerpc than in generic.
This commit is contained in:
Szabolcs Nagy 2017-09-10 13:34:54 +02:00 committed by Rich Felker
parent da438ee1fc
commit c10bc61508
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,10 @@
#define PROT_SAO 0x10
#undef MAP_NORESERVE
#define MAP_NORESERVE 0x40
#undef MAP_LOCKED
#define MAP_LOCKED 0x80
#undef MCL_CURRENT
#define MCL_CURRENT 0x2000
#undef MCL_FUTURE

View File

@ -1,5 +1,10 @@
#define PROT_SAO 0x10
#undef MAP_NORESERVE
#define MAP_NORESERVE 0x40
#undef MAP_LOCKED
#define MAP_LOCKED 0x80
#undef MCL_CURRENT
#define MCL_CURRENT 0x2000
#undef MCL_FUTURE