summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/ia64/bits/siginfo-arch.h
blob: a2144c3771288cfd0414f0b06be3790e3e9ab433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Architecture-specific adjustments to siginfo_t.  ia64 version.  */
#ifndef _BITS_SIGINFO_ARCH_H

#define __SI_HAVE_SIGSYS 0

#ifdef __USE_GNU
# define __SI_SIGFAULT_ADDL			\
  int si_imm;					\
  unsigned int si_segvflags;			\
  unsigned long int si_isr;
#else
# define __SI_SIGFAULT_ADDL			\
  int __si_imm;					\
  unsigned int __si_segvflags;			\
  unsigned long int __si_isr;
#endif

#endif