sigcontext.h 537 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Copyright (C) 2006 Atmark Techno, Inc.
  4. *
  5. * This file is subject to the terms and conditions of the GNU General Public
  6. * License. See the file "COPYING" in the main directory of this archive
  7. * for more details.
  8. */
  9. #ifndef _ASM_MICROBLAZE_SIGCONTEXT_H
  10. #define _ASM_MICROBLAZE_SIGCONTEXT_H
  11. /* FIXME should be linux/ptrace.h */
  12. #include <asm/ptrace.h>
  13. struct sigcontext {
  14. struct pt_regs regs;
  15. unsigned long oldmask;
  16. };
  17. #endif /* _ASM_MICROBLAZE_SIGCONTEXT_H */