diff options
author | Michal Simek <monstr@monstr.eu> | 2009-03-27 09:25:40 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-03-27 09:25:40 -0400 |
commit | 3a5c17b573acd712c849ba447d914dae722483b3 (patch) | |
tree | df7b58e1fcc06c965b0ef2504929632bee3cd48c /arch | |
parent | 19d1b40ac5ba821b29fe047512ae9971a31d14c3 (diff) |
microblaze_v8: sigcontext.h siginfo.h
Reviewed-by: Ingo Molnar <mingo@elte.hu>
Acked-by: John Linn <john.linn@xilinx.com>
Acked-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
Acked-by: John Williams <john.williams@petalogix.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/microblaze/include/asm/sigcontext.h | 20 | ||||
-rw-r--r-- | arch/microblaze/include/asm/siginfo.h | 15 |
2 files changed, 35 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/sigcontext.h b/arch/microblaze/include/asm/sigcontext.h new file mode 100644 index 000000000000..55873c80c917 --- /dev/null +++ b/arch/microblaze/include/asm/sigcontext.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2006 Atmark Techno, Inc. | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of the GNU General Public | ||
5 | * License. See the file "COPYING" in the main directory of this archive | ||
6 | * for more details. | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASM_MICROBLAZE_SIGCONTEXT_H | ||
10 | #define _ASM_MICROBLAZE_SIGCONTEXT_H | ||
11 | |||
12 | /* FIXME should be linux/ptrace.h */ | ||
13 | #include <asm/ptrace.h> | ||
14 | |||
15 | struct sigcontext { | ||
16 | struct pt_regs regs; | ||
17 | unsigned long oldmask; | ||
18 | }; | ||
19 | |||
20 | #endif /* _ASM_MICROBLAZE_SIGCONTEXT_H */ | ||
diff --git a/arch/microblaze/include/asm/siginfo.h b/arch/microblaze/include/asm/siginfo.h new file mode 100644 index 000000000000..f162911a8f50 --- /dev/null +++ b/arch/microblaze/include/asm/siginfo.h | |||
@@ -0,0 +1,15 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2006 Atmark Techno, Inc. | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of the GNU General Public | ||
5 | * License. See the file "COPYING" in the main directory of this archive | ||
6 | * for more details. | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASM_MICROBLAZE_SIGINFO_H | ||
10 | #define _ASM_MICROBLAZE_SIGINFO_H | ||
11 | |||
12 | #include <linux/types.h> | ||
13 | #include <asm-generic/siginfo.h> | ||
14 | |||
15 | #endif /* _ASM_MICROBLAZE_SIGINFO_H */ | ||