blob: d21b14f5c25ca5fad7e670eccd20d5a3dff596d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001struct sigframe
2{
3 char *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 *pretcode;
14 int sig;
15 struct siginfo *pinfo;
16 void *puc;
17 struct siginfo info;
18 struct ucontext uc;
19 struct _fpstate fpstate;
20 char retcode[8];
21};