source: trunk/packages/xen-3.1/xen-3.1/xen/arch/x86/x86_64/compat.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 725 bytes
Line 
1/******************************************************************************
2 * compat.c
3 */
4
5#include <xen/config.h>
6#include <xen/hypercall.h>
7#include <compat/xen.h>
8#include <compat/physdev.h>
9
10DEFINE_XEN_GUEST_HANDLE(physdev_op_compat_t);
11#define physdev_op                    compat_physdev_op
12#define physdev_op_t                  physdev_op_compat_t
13#define do_physdev_op                 compat_physdev_op
14#define do_physdev_op_compat(x)       compat_physdev_op_compat(_##x)
15
16#define COMPAT
17#define _XEN_GUEST_HANDLE(t) XEN_GUEST_HANDLE(t)
18typedef int ret_t;
19
20#include "../compat.c"
21
22/*
23 * Local variables:
24 * mode: C
25 * c-set-style: "BSD"
26 * c-basic-offset: 4
27 * tab-width: 4
28 * indent-tabs-mode: nil
29 * End:
30 */
Note: See TracBrowser for help on using the repository browser.