projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched
[linux-2.6]
/
arch
/
i386
/
kernel
/
sigframe.h
1
struct 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
11
struct 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
};