diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-06-18 13:33:52 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-06-18 13:33:52 +0000 |
commit | 91b2f3e5dd9940d81c424dc35cd182d7631fc3c4 (patch) | |
tree | da35a9b65cd78c6e2fc923f232efc16561722151 /sysdeps/unix | |
parent | 3fe8fc793f2e98c28c07428fabdeaf2f3c3480c7 (diff) | |
download | glibc-91b2f3e5dd9940d81c424dc35cd182d7631fc3c4.zip glibc-91b2f3e5dd9940d81c424dc35cd182d7631fc3c4.tar.gz glibc-91b2f3e5dd9940d81c424dc35cd182d7631fc3c4.tar.bz2 |
Update MAP_TYPE value for hppa from Linux 4.17.
This patch updates the hppa definition of MAP_TYPE to reflect a
corresponding change in the Linux kernel in 4.17 (so the value now has
four bits set, as it does on other architectures, although they are
different from other architectures because of hppa differences in
other MAP_* bits).
Tested with build-many-glibcs.py for hppa.
* sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
(MAP_TYPE): Change value to 0x2b.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/bits/mman.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/hppa/bits/mman.h b/sysdeps/unix/sysv/linux/hppa/bits/mman.h index 1d2a175..1c7d370 100644 --- a/sysdeps/unix/sysv/linux/hppa/bits/mman.h +++ b/sysdeps/unix/sysv/linux/hppa/bits/mman.h @@ -36,7 +36,7 @@ #ifdef __USE_MISC # define MAP_SHARED_VALIDATE 0x03 /* Share changes and validate extension flags. */ -# define MAP_TYPE 0x03 /* Mask for type of mapping */ +# define MAP_TYPE 0x2b /* Mask for type of mapping */ #endif /* Other flags. */ |