aboutsummaryrefslogtreecommitdiff
path: root/arch/unicore32/include/uapi/asm/sigcontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/unicore32/include/uapi/asm/sigcontext.h')
-rw-r--r--arch/unicore32/include/uapi/asm/sigcontext.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/unicore32/include/uapi/asm/sigcontext.h b/arch/unicore32/include/uapi/asm/sigcontext.h
index 6a2d7671c052..cbc3446b9c03 100644
--- a/arch/unicore32/include/uapi/asm/sigcontext.h
+++ b/arch/unicore32/include/uapi/asm/sigcontext.h
@@ -18,6 +18,7 @@
* before the signal handler was invoked. Note: only add new entries
* to the end of the structure.
*/
+#ifndef CONFIG_UNICORE32_OLDABI
struct sigcontext {
unsigned long trap_no;
unsigned long error_code;
@@ -25,5 +26,18 @@ struct sigcontext {
unsigned long fault_address;
struct pt_regs regs;
};
+#else
+struct pt_regs_sigcontext {
+ unsigned long uregs[33];
+};
+
+struct sigcontext {
+ unsigned long trap_no;
+ unsigned long error_code;
+ unsigned long oldmask;
+ struct pt_regs_sigcontext regs;
+ unsigned long fault_address;
+};
+#endif /* CONFIG_UNICORE32_OLDABI */
#endif