(root)/
glibc-2.38/
sysdeps/
unix/
sysv/
linux/
ia64/
bits/
siginfo-consts-arch.h
       1  /* Architecture-specific additional siginfo constants.  ia64 version.  */
       2  #ifndef _BITS_SIGINFO_CONSTS_ARCH_H
       3  #define _BITS_SIGINFO_CONSTS_ARCH_H 1
       4  
       5  /* `si_code' values for SIGILL signal.  */
       6  enum
       7  {
       8    ILL_BREAK = ILL_BADIADDR + 1
       9  #define ILL_BREAK ILL_BREAK
      10  };
      11  
      12  /* `si_code' values for SIGFPE signal.  */
      13  enum
      14  {
      15     FPE_DECOVF   = FPE_FLTSUB + 1,
      16  #define FPE_DECOVF  FPE_DECOVF
      17     FPE_DECDIV,
      18  #define FPE_DECDIV  FPE_DECDIV
      19     FPE_DECERR,
      20  #define FPE_DECERR  FPE_DECERR
      21     FPE_INVASC,
      22  #define FPE_INVASC  FPE_INVASC
      23     FPE_INVDEC
      24  #define FPE_INVDEC  FPE_INVDEC
      25  };
      26  
      27  /* `si_code' values for SIGSEGV signal.  */
      28  enum
      29  {
      30    SEGV_PSTKOVF = SEGV_ACCERR + 1
      31  #define SEGV_PSTKOVF SEGV_PSTKOVF
      32  };
      33  
      34  #endif