siginfo.h 428 B

123456789101112131415161718192021222324
  1. /*
  2. * include/asm-s390/siginfo.h
  3. *
  4. * S390 version
  5. *
  6. * Derived from "include/asm-i386/siginfo.h"
  7. */
  8. #ifndef _S390_SIGINFO_H
  9. #define _S390_SIGINFO_H
  10. #ifdef __s390x__
  11. #define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int))
  12. #endif
  13. #ifdef CONFIG_ARCH_S390X
  14. #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 4)
  15. #else
  16. #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 3)
  17. #endif
  18. #include <asm-generic/siginfo.h>
  19. #endif