aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/sigframe_32.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/sigframe_32.h')
-rw-r--r--arch/x86/kernel/sigframe_32.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/x86/kernel/sigframe_32.h b/arch/x86/kernel/sigframe_32.h
new file mode 100644
index 000000000000..0b2221711dad
--- /dev/null
+++ b/arch/x86/kernel/sigframe_32.h
@@ -0,0 +1,21 @@
1struct sigframe
2{
3 char __user *pretcode;
4 int sig;
5 struct sigcontext sc;
6 struct _fpstate fpstate;
7 unsigned long extramask[_NSIG_WORDS-1];
8 char retcode[8];
9};
10
11struct rt_sigframe
12{
13 char __user *pretcode;
14 int sig;
15 struct siginfo __user *pinfo;
16 void __user *puc;
17 struct siginfo info;
18 struct ucontext uc;
19 struct _fpstate fpstate;
20 char retcode[8];
21};