repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] 3044/1: Fix sparse warnings about incompatible pointer types for register defin...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
asm-ppc
/
sigcontext.h
blob
b7a417e0a9217c758384d4227975b7580a33902b
1
#ifndef _ASM_PPC_SIGCONTEXT_H
2
#define _ASM_PPC_SIGCONTEXT_H
3
4
#include <asm/ptrace.h>
5
#include <linux/compiler.h>
6
7
struct
sigcontext
{
8
unsigned long
_unused
[
4
];
9
int
signal
;
10
unsigned long
handler
;
11
unsigned long
oldmask
;
12
struct
pt_regs __user
*
regs
;
13
};
14
15
#endif