mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
0d09e41a51
Many of these should be cleaned up with proper qdev-/QOM-ification. Right now there are many catch-all headers in include/hw/ARCH depending on cpu.h, and this makes it necessary to compile these files per-target. However, fixing this does not belong in these patches. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
494 B
C
14 lines
494 B
C
#ifndef QEMU_HW_XEN_DOMAINBUILD_H
|
|
#define QEMU_HW_XEN_DOMAINBUILD_H 1
|
|
|
|
#include "hw/xen/xen_common.h"
|
|
|
|
int xenstore_domain_init1(const char *kernel, const char *ramdisk,
|
|
const char *cmdline);
|
|
int xenstore_domain_init2(int xenstore_port, int xenstore_mfn,
|
|
int console_port, int console_mfn);
|
|
int xen_domain_build_pv(const char *kernel, const char *ramdisk,
|
|
const char *cmdline);
|
|
|
|
#endif /* QEMU_HW_XEN_DOMAINBUILD_H */
|