diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-12-18 12:18:35 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-18 16:04:13 -0500 |
commit | 5c2628e8b4f670d0954053444289e2b018be957a (patch) | |
tree | 8d21ed8ad2aa2777d94839902864cb6b0f25a183 /arch/x86/include/asm/sigframe.h | |
parent | d98f9d84422c393103dc7569dc8444bac628f7ac (diff) |
x86: sigframe.h: add guard macro
Impact: cleanup
Add missing guard macro _ASM_X86_SIGFRAME_H.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/sigframe.h')
-rw-r--r-- | arch/x86/include/asm/sigframe.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/sigframe.h b/arch/x86/include/asm/sigframe.h index 491a0878c3aa..3bd0f4276000 100644 --- a/arch/x86/include/asm/sigframe.h +++ b/arch/x86/include/asm/sigframe.h | |||
@@ -1,3 +1,6 @@ | |||
1 | #ifndef _ASM_X86_SIGFRAME_H | ||
2 | #define _ASM_X86_SIGFRAME_H | ||
3 | |||
1 | #ifdef CONFIG_X86_32 | 4 | #ifdef CONFIG_X86_32 |
2 | #define sigframe_ia32 sigframe | 5 | #define sigframe_ia32 sigframe |
3 | #define rt_sigframe_ia32 rt_sigframe | 6 | #define rt_sigframe_ia32 rt_sigframe |
@@ -59,3 +62,5 @@ struct rt_sigframe { | |||
59 | /* fp state follows here */ | 62 | /* fp state follows here */ |
60 | }; | 63 | }; |
61 | #endif /* CONFIG_X86_64 */ | 64 | #endif /* CONFIG_X86_64 */ |
65 | |||
66 | #endif /* _ASM_X86_SIGFRAME_H */ | ||