mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
linux-user: decode MAP_{UNINITIALIZED,EXECUTABLE} in strace
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Riku Voipio <riku.voipio@nokia.com>
This commit is contained in:
parent
d8035d4cfc
commit
906c1b8ec8
2 changed files with 5 additions and 0 deletions
|
@ -398,6 +398,7 @@ UNUSED static struct flags mmap_flags[] = {
|
|||
FLAG_TARGET(MAP_DENYWRITE),
|
||||
FLAG_TARGET(MAP_FIXED),
|
||||
FLAG_TARGET(MAP_GROWSDOWN),
|
||||
FLAG_TARGET(MAP_EXECUTABLE),
|
||||
#ifdef MAP_LOCKED
|
||||
FLAG_TARGET(MAP_LOCKED),
|
||||
#endif
|
||||
|
@ -407,6 +408,9 @@ UNUSED static struct flags mmap_flags[] = {
|
|||
FLAG_TARGET(MAP_NORESERVE),
|
||||
#ifdef MAP_POPULATE
|
||||
FLAG_TARGET(MAP_POPULATE),
|
||||
#endif
|
||||
#ifdef TARGET_MAP_UNINITIALIZED
|
||||
FLAG_TARGET(MAP_UNINITIALIZED),
|
||||
#endif
|
||||
FLAG_END,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue