repo.or.cz
/
linux-2.6
/
mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] i386: Implement vmi_kmap_atomic_pte
[linux-2.6/mini2440.git]
/
arch
/
i386
/
kernel
/
sigframe.h
blob
0b2221711dadfbf61860def1eca35885e072041c
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
};