1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2*4882a593Smuzhiyun #ifndef _ASM_X86_SIGINFO_H 3*4882a593Smuzhiyun #define _ASM_X86_SIGINFO_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #ifdef __x86_64__ 6*4882a593Smuzhiyun # ifdef __ILP32__ /* x32 */ 7*4882a593Smuzhiyun typedef long long __kernel_si_clock_t __attribute__((aligned(4))); 8*4882a593Smuzhiyun # define __ARCH_SI_CLOCK_T __kernel_si_clock_t 9*4882a593Smuzhiyun # define __ARCH_SI_ATTRIBUTES __attribute__((aligned(8))) 10*4882a593Smuzhiyun # endif 11*4882a593Smuzhiyun #endif 12*4882a593Smuzhiyun 13*4882a593Smuzhiyun #include <asm-generic/siginfo.h> 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun #endif /* _ASM_X86_SIGINFO_H */ 16