sigcontext.h 633 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef _ASM_ARC_SIGCONTEXT_H
  10. #define _ASM_ARC_SIGCONTEXT_H
  11. #include <asm/ptrace.h>
  12. /*
  13. * Signal context structure - contains all info to do with the state
  14. * before the signal handler was invoked.
  15. */
  16. struct sigcontext {
  17. struct user_regs_struct regs;
  18. };
  19. #endif /* _ASM_ARC_SIGCONTEXT_H */