]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Synchronize <sys/personality.h> with kernel headers
authorAurelien Jarno <aurelien@aurel32.net>
Mon, 28 Mar 2016 20:42:52 +0000 (22:42 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Mon, 28 Mar 2016 20:42:52 +0000 (22:42 +0200)
<sys/personality.h> is out of sync with kernel headers, missing the
UNAME26, FDPIC_FUNCPTRS and PER_LINUX_FDPIC entries. Fix that.

Changelog:
* sysdeps/unix/sysv/linux/sys/personality.h (UNAME26, FDPIC_FUNCPTRS,
PER_LINUX_FDPIC): Add.

ChangeLog
sysdeps/unix/sysv/linux/sys/personality.h

index 5e8cc4507856afbe823d731a1a59f63e4549f3cb..4c8a78807242d587d814392775704d2e89262ab8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-03-28  Aurelien Jarno  <aurelien@aurel32.net>
+
+       * sysdeps/unix/sysv/linux/sys/personality.h (UNAME26, FDPIC_FUNCPTRS,
+       PER_LINUX_FDPIC): Add.
+
 2016-03-28   H.J. Lu  <hongjiu.lu@intel.com>
 
        * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
index af2ece6cf9b92d2f3322be96b89fe9f47252e8e5..ad2258f436581d2e12a0f6a754d399646e334a64 100644 (file)
@@ -26,7 +26,9 @@
    These occupy the top three bytes.  */
 enum
   {
+    UNAME26 = 0x0020000,
     ADDR_NO_RANDOMIZE = 0x0040000,
+    FDPIC_FUNCPTRS = 0x0080000,
     MMAP_PAGE_ZERO = 0x0100000,
     ADDR_COMPAT_LAYOUT = 0x0200000,
     READ_IMPLIES_EXEC = 0x0400000,
@@ -45,6 +47,7 @@ enum
   {
     PER_LINUX = 0x0000,
     PER_LINUX_32BIT = 0x0000 | ADDR_LIMIT_32BIT,
+    PER_LINUX_FDPIC = 0x0000 | FDPIC_FUNCPTRS,
     PER_SVR4 = 0x0001 | STICKY_TIMEOUTS | MMAP_PAGE_ZERO,
     PER_SVR3 = 0x0002 | STICKY_TIMEOUTS | SHORT_INODE,
     PER_SCOSVR3 = 0x0003 | STICKY_TIMEOUTS | WHOLE_SECONDS | SHORT_INODE,