projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
x86: spinlock_32/64 match the jump labels and symbols
[linux-2.6]
/
include
/
asm-x86
/
asm.h
1
#ifndef _ASM_X86_ASM_H
2
#define _ASM_X86_ASM_H
3
4
#ifdef CONFIG_X86_32
5
/* 32 bits */
6
7
# define _ASM_PTR " .long "
8
# define _ASM_ALIGN " .balign 4 "
9
10
#else
11
/* 64 bits */
12
13
# define _ASM_PTR " .quad "
14
# define _ASM_ALIGN " .balign 8 "
15
16
#endif /* CONFIG_X86_32 */
17
18
#endif /* _ASM_X86_ASM_H */