sigcontext.h 271 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __ASM_CSKY_SIGCONTEXT_H
  3. #define __ASM_CSKY_SIGCONTEXT_H
  4. #include <asm/ptrace.h>
  5. struct sigcontext {
  6. struct pt_regs sc_pt_regs;
  7. struct user_fp sc_user_fp;
  8. };
  9. #endif /* __ASM_CSKY_SIGCONTEXT_H */