aboutsummaryrefslogtreecommitdiff
path: root/i386/i386at/gpl/linux/include/asm/sigcontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'i386/i386at/gpl/linux/include/asm/sigcontext.h')
-rw-r--r--i386/i386at/gpl/linux/include/asm/sigcontext.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/i386/i386at/gpl/linux/include/asm/sigcontext.h b/i386/i386at/gpl/linux/include/asm/sigcontext.h
new file mode 100644
index 00000000..5b84694f
--- /dev/null
+++ b/i386/i386at/gpl/linux/include/asm/sigcontext.h
@@ -0,0 +1,29 @@
+#ifndef _ASMi386_SIGCONTEXT_H
+#define _ASMi386_SIGCONTEXT_H
+
+struct sigcontext_struct {
+ unsigned short gs, __gsh;
+ unsigned short fs, __fsh;
+ unsigned short es, __esh;
+ unsigned short ds, __dsh;
+ unsigned long edi;
+ unsigned long esi;
+ unsigned long ebp;
+ unsigned long esp;
+ unsigned long ebx;
+ unsigned long edx;
+ unsigned long ecx;
+ unsigned long eax;
+ unsigned long trapno;
+ unsigned long err;
+ unsigned long eip;
+ unsigned short cs, __csh;
+ unsigned long eflags;
+ unsigned long esp_at_signal;
+ unsigned short ss, __ssh;
+ unsigned long i387;
+ unsigned long oldmask;
+ unsigned long cr2;
+};
+
+#endif