source: trunk/packages/xen-common/xen-common/xen/arch/x86/x86_64/platform_hypercall.c @ 34

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

Add xen and xen-common

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