Revision 9c06a1f7

b/include/hw/boards.h
4 4
#define HW_BOARDS_H
5 5

  
6 6
#include "sysemu/blockdev.h"
7
#include "sysemu/qemumachine.h"
7 8
#include "hw/qdev.h"
8 9

  
9
typedef struct QEMUMachine QEMUMachine;
10

  
11 10
typedef struct QEMUMachineInitArgs {
12 11
    const QEMUMachine *machine;
13 12
    ram_addr_t ram_size;
b/include/hw/xen/xen.h
10 10

  
11 11
#include "hw/irq.h"
12 12
#include "qemu-common.h"
13
#include "sysemu/qemumachine.h"
13 14

  
14 15
/* xen-machine.c */
15 16
enum xen_mode {
b/include/sysemu/kvm.h
18 18
#include "config-host.h"
19 19
#include "qemu/queue.h"
20 20
#include "qom/cpu.h"
21
#include "sysemu/qemumachine.h"
21 22

  
22 23
#ifdef CONFIG_KVM
23 24
#include <linux/kvm.h>
b/include/sysemu/qemumachine.h
1
/*
2
 * QEMU Machine typedef
3
 *
4
 * Copyright Alexander Graf <agraf@suse.de>
5
 *
6
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7
 * See the COPYING file in the top-level directory.
8
 *
9
 */
10

  
11
#ifndef QEMUMACHINE_H
12
#define QEMUMACHINE_H
13

  
14
typedef struct QEMUMachine QEMUMachine;
15

  
16
#endif /* !QEMUMACHINE_H */
b/include/sysemu/qtest.h
16 16

  
17 17
#include "qemu-common.h"
18 18
#include "qapi/error.h"
19
#include "sysemu/qemumachine.h"
19 20

  
20 21
extern bool qtest_allowed;
21 22

  
b/kvm-stub.c
14 14
#include "hw/hw.h"
15 15
#include "cpu.h"
16 16
#include "sysemu/kvm.h"
17
#include "sysemu/qemumachine.h"
17 18

  
18 19
#ifndef CONFIG_USER_ONLY
19 20
#include "hw/pci/msi.h"

Also available in: Unified diff