-
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: 79832 b: refs/heads/master c: 7f3646a h: refs/heads/master v: v3
- Loading branch information
Roland McGrath
authored and
Ingo Molnar
committed
Jan 30, 2008
1 parent
4d1d51d
commit c8ff625
Showing
5 changed files
with
23 additions
and
16 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: 5b93049337301d6fbd3cf55db99b34e6b0dbd3a3 | ||
refs/heads/master: 7f3646aa16f496201e045183402c6614fa27b0c7 |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef _ASM_X86_VDSO_H | ||
#define _ASM_X86_VDSO_H 1 | ||
|
||
extern const char VDSO64_PRELINK[]; | ||
|
||
/* | ||
* Given a pointer to the vDSO image, find the pointer to VDSO64_name | ||
* as that symbol is defined in the vDSO sources or linker script. | ||
*/ | ||
#define VDSO64_SYMBOL(base, name) ({ \ | ||
extern const char VDSO64_##name[]; \ | ||
(void *) (VDSO64_##name - VDSO64_PRELINK + (unsigned long) (base)); }) | ||
|
||
#endif /* asm-x86/vdso.h */ |