Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 18 Dec 2002 06:52:10 +0000 (06:52 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 18 Dec 2002 06:52:10 +0000 (06:52 +0000)
2002-12-17  Ulrich Drepper  <drepper@redhat.com>

* elf/elf.h (AT_SYSINFO): New define.
* sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Add support for
AT_SYSINFO.

ChangeLog
elf/elf.h
sysdeps/generic/dl-sysdep.c

index f956446..b0fedde 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-12-17  Ulrich Drepper  <drepper@redhat.com>
+
+       * elf/elf.h (AT_SYSINFO): New define.
+       * sysdeps/generic/dl-sysdep.c (_dl_show_auxv): Add support for
+       AT_SYSINFO.
+
 2002-12-17  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/unix/sysv/linux/alpha/syscalls.list (msgrcv, msgsnd):
index 67e126f..89ce568 100644 (file)
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -946,6 +946,10 @@ typedef struct
    interpretation of the AUXV. Must be > 16.  */
 #define AT_IGNOREPPC   22              /* Entry should be ignored */
 
+/* Pointer to the global system page used for system calls and other
+   nice things.  */
+#define AT_SYSINFO     32
+
 
 /* Note section contents.  Each entry in the note section begins with
    a header of a fixed form.  */
index 17e8f4d..256eca5 100644 (file)
@@ -238,7 +238,8 @@ _dl_show_auxv (void)
          [AT_FPUCW - 2] =              { "AT_FPUCW:       ", hex },
          [AT_DCACHEBSIZE - 2] =        { "AT_DCACHEBSIZE: 0x", hex },
          [AT_ICACHEBSIZE - 2] =        { "AT_ICACHEBSIZE: 0x", hex },
-         [AT_UCACHEBSIZE - 2] =        { "AT_UCACHEBSIZE: 0x", hex }
+         [AT_UCACHEBSIZE - 2] =        { "AT_UCACHEBSIZE: 0x", hex },
+         [AT_SYSINFO - 2] =            { "AT_SYSINFO:     0x", hex }
        };
       unsigned int idx = (unsigned int) (av->a_type - 2);