sigcontext.h 306 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3. #ifndef __ASM_CSKY_SIGCONTEXT_H
  4. #define __ASM_CSKY_SIGCONTEXT_H
  5. #include <asm/ptrace.h>
  6. struct sigcontext {
  7. struct pt_regs sc_pt_regs;
  8. struct user_fp sc_user_fp;
  9. };
  10. #endif /* __ASM_CSKY_SIGCONTEXT_H */