repo.or.cz
/
linux-2.6.22.y-op.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[SCSI] mptfusion: correct Kconfig problem
[linux-2.6.22.y-op.git]
/
arch
/
i386
/
kernel
/
sigframe.h
blob
d21b14f5c25ca5fad7e670eccd20d5a3dff596d3
1
struct
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
11
struct
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
};