-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 53758 b: refs/heads/master c: 9d291e7 h: refs/heads/master v: v3
- Loading branch information
Vivek Goyal
authored and
Andi Kleen
committed
May 2, 2007
1 parent
eb3fbb9
commit 30d2c54
Showing
5 changed files
with
53 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: e65845045588806fa5c8df8a4f4253516515a5e3 | ||
refs/heads/master: 9d291e787b2b71d1b57e5fbb24ba9c70e748ed84 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ header-y += vsyscall32.h | |
unifdef-y += mce.h | ||
unifdef-y += mtrr.h | ||
unifdef-y += vsyscall.h | ||
unifdef-y += const.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* const.h: Macros for dealing with constants. */ | ||
|
||
#ifndef _X86_64_CONST_H | ||
#define _X86_64_CONST_H | ||
|
||
/* Some constant macros are used in both assembler and | ||
* C code. Therefore we cannot annotate them always with | ||
* 'UL' and other type specificers unilaterally. We | ||
* use the following macros to deal with this. | ||
*/ | ||
|
||
#ifdef __ASSEMBLY__ | ||
#define _AC(X,Y) X | ||
#else | ||
#define __AC(X,Y) (X##Y) | ||
#define _AC(X,Y) __AC(X,Y) | ||
#endif | ||
|
||
|
||
#endif /* !(_X86_64_CONST_H) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters