summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include/asm/sigcontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/include/asm/sigcontext.h')
-rw-r--r--arch/powerpc/include/asm/sigcontext.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/sigcontext.h b/arch/powerpc/include/asm/sigcontext.h
new file mode 100644
index 0000000000..78648b089c
--- /dev/null
+++ b/arch/powerpc/include/asm/sigcontext.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef _ASM_PPC_SIGCONTEXT_H
+#define _ASM_PPC_SIGCONTEXT_H
+
+#include <asm/ptrace.h>
+
+
+struct sigcontext_struct {
+ unsigned long _unused[4];
+ int signal;
+ unsigned long handler;
+ unsigned long oldmask;
+ struct pt_regs *regs;
+};
+
+#endif