about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-10-25 11:43:57 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-10-25 14:36:57 +0200
commit7c5e34d7f1b8f8f5acd94c2b885ae13b85414dcd (patch)
treef80e77e7a948488e8b9cf3a5d056a07e9a8d0705 /sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
parent5b784e8834ae92961eb6be89863ffb041e9c6e75 (diff)
downloadglibc-7c5e34d7f1b8f8f5acd94c2b885ae13b85414dcd.tar.gz
glibc-7c5e34d7f1b8f8f5acd94c2b885ae13b85414dcd.tar.xz
glibc-7c5e34d7f1b8f8f5acd94c2b885ae13b85414dcd.zip
conform: XFAIL siginfo_t si_band test on sparc64
We can use long int on sparcv9, but on sparc64, we must match the int
type used by the kernel (and not long int, as in POSIX).
Diffstat (limited to 'sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h')
-rw-r--r--sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h b/sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
index 9f79715ebe..4dd35237f6 100644
--- a/sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
+++ b/sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
@@ -2,7 +2,12 @@
 #ifndef _BITS_SIGINFO_ARCH_H
 #define _BITS_SIGINFO_ARCH_H 1
 
-#define __SI_BAND_TYPE int
+/* The kernel uses int instead of long int (as in POSIX).  In 32-bit
+   mode, we can still use long int, but in 64-bit mode, we need to
+   deviate from POSIX.  */
+#if __WORDSIZE == 64
+# define __SI_BAND_TYPE int
+#endif
 
 #define __SI_SIGFAULT_ADDL \
   int _si_trapno;