]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/linux-26-headers/include/xen/interface/io/protocols.h
update
[l4.git] / l4 / pkg / linux-26-headers / include / xen / interface / io / protocols.h
1 #ifndef __XEN_PROTOCOLS_H__
2 #define __XEN_PROTOCOLS_H__
3
4 #define XEN_IO_PROTO_ABI_X86_32     "x86_32-abi"
5 #define XEN_IO_PROTO_ABI_X86_64     "x86_64-abi"
6 #define XEN_IO_PROTO_ABI_IA64       "ia64-abi"
7 #define XEN_IO_PROTO_ABI_POWERPC64  "powerpc64-abi"
8
9 #if defined(__i386__)
10 # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
11 #elif defined(__x86_64__)
12 # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
13 #elif defined(__ia64__)
14 # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_IA64
15 #elif defined(__powerpc64__)
16 # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64
17 #else
18 # error arch fixup needed here
19 #endif
20
21 #endif