diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-08-13 06:46:26 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-13 06:59:29 -0400 |
commit | 26d809af6397ce5c37f5c44d89734d19cce1ad25 (patch) | |
tree | c5bf9c431bad486730a748fcb3756a68faf3420f /include/asm-x86/sigcontext.h | |
parent | 6152e4b1c99a3689fc318d092cd144597f7dbd14 (diff) |
x86: fix xsave build error
fix this build failure with certain glibc versions:
In file included from /usr/include/bits/sigcontext.h:28,
from /usr/include/signal.h:333,
from Documentation/accounting/getdelays.c:24:
/home/mingo/tip/usr/include/asm/sigcontext.h:191: error: expected specifier-qualifier-list before ‘u64’
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/sigcontext.h')
-rw-r--r-- | include/asm-x86/sigcontext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-x86/sigcontext.h b/include/asm-x86/sigcontext.h index 899fe2f8abb9..ee813f4fe5d5 100644 --- a/include/asm-x86/sigcontext.h +++ b/include/asm-x86/sigcontext.h | |||
@@ -264,9 +264,9 @@ struct sigcontext { | |||
264 | #endif /* !__i386__ */ | 264 | #endif /* !__i386__ */ |
265 | 265 | ||
266 | struct _xsave_hdr { | 266 | struct _xsave_hdr { |
267 | u64 xstate_bv; | 267 | __u64 xstate_bv; |
268 | u64 reserved1[2]; | 268 | __u64 reserved1[2]; |
269 | u64 reserved2[5]; | 269 | __u64 reserved2[5]; |
270 | }; | 270 | }; |
271 | 271 | ||
272 | /* | 272 | /* |