-
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: 93176 b: refs/heads/master c: 3e33423 h: refs/heads/master v: v3
- Loading branch information
Markus Armbruster
authored and
Ingo Molnar
committed
Apr 24, 2008
1 parent
3321482
commit 87730ef
Showing
3 changed files
with
29 additions
and
1 deletion.
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: b15993fcc1bf15f717fb4414b32e4a11534dfdc4 | ||
refs/heads/master: 3e334239d89d4a71610be5a3e8432464d421d9ec |
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,21 @@ | ||
#ifndef __XEN_PROTOCOLS_H__ | ||
#define __XEN_PROTOCOLS_H__ | ||
|
||
#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi" | ||
#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi" | ||
#define XEN_IO_PROTO_ABI_IA64 "ia64-abi" | ||
#define XEN_IO_PROTO_ABI_POWERPC64 "powerpc64-abi" | ||
|
||
#if defined(__i386__) | ||
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32 | ||
#elif defined(__x86_64__) | ||
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64 | ||
#elif defined(__ia64__) | ||
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_IA64 | ||
#elif defined(__powerpc64__) | ||
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64 | ||
#else | ||
# error arch fixup needed here | ||
#endif | ||
|
||
#endif |