linux/include/xen/interface/io/protocols.h
<<
>>
Prefs
   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
  22
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.