Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 28 Sep 2004 07:57:56 +0000 (07:57 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 28 Sep 2004 07:57:56 +0000 (07:57 +0000)
2004-09-28  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (si_flags): Add
support to get this value.

ChangeLog
sysdeps/unix/sysv/linux/ia64/bits/siginfo.h

index 9302f2a..7dbec45 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-28  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (si_flags): Add
+       support to get this value.
+
 2004-09-28  Jakub Jelinek  <jakub@redhat.com>
 
        * io/utime.h (utime): Allow second argument to be NULL.
index c3abe80..52d00e9 100644 (file)
@@ -93,7 +93,7 @@ typedef struct siginfo
          {
            void *si_addr;      /* Faulting insn/memory ref.  */
            int _si_imm;
-           int _si_pad0;
+           unsigned int _si_flags;
            unsigned long int _si_isr;
          } _sigfault;
 
@@ -124,6 +124,7 @@ typedef struct siginfo
 
 #ifdef __USE_GNU
 #  define si_imm       _sifields._sigfault._si_imm
+#  define si_flags     _sifields._sigfault._si_flags
 #  define si_isr       _sifields._sigfault._si_isr
 #endif