diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2025-07-29 11:33:58 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:04:04 +1000 |
commit | dd1d0239a79c4e7947c901fcb1f232ecc0428a96 (patch) | |
tree | 28cad6b8ba90bd56a91226887f42dcfc6ae2408e /linux-user | |
parent | 5dcc0b62059e2330f2746fa691ac6791e9a14cc3 (diff) | |
download | qemu-dd1d0239a79c4e7947c901fcb1f232ecc0428a96.zip qemu-dd1d0239a79c4e7947c901fcb1f232ecc0428a96.tar.gz qemu-dd1d0239a79c4e7947c901fcb1f232ecc0428a96.tar.bz2 |
linux-user: Remove MAP_DENYWRITE from elfload.c
The last use of this fallback was removed in bf858897b769.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/elfload.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c index c032692..8b92fba 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -105,11 +105,6 @@ int info_is_fdpic(struct image_info *info) return info->personality == PER_LINUX_FDPIC; } -/* this flag is uneffective under linux too, should be deleted */ -#ifndef MAP_DENYWRITE -#define MAP_DENYWRITE 0 -#endif - #if TARGET_BIG_ENDIAN #define ELF_DATA ELFDATA2MSB #else |