diff options
| author | Eduardo Habkost <ehabkost@redhat.com> | 2014-09-26 17:45:31 -0300 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-10-09 15:36:14 +0200 |
| commit | ac2da55e01b1a84e6bba32768211201dec230232 (patch) | |
| tree | 107c32c8d8667a3577146d7f151040f58dac6556 /include/hw/boards.h | |
| parent | f6a1ef64408a5f7f52601589fef2a850b93d817e (diff) | |
| download | focaccia-qemu-ac2da55e01b1a84e6bba32768211201dec230232.tar.gz focaccia-qemu-ac2da55e01b1a84e6bba32768211201dec230232.zip | |
accel: Create accel object when initializing machine
Create an actual TYPE_ACCEL object when initializing a machine. This will allow accelerator classes to implement some initialization on instance_init, and to save state on the TYPE_ACCEL object. Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | include/hw/boards.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index 0058c49d8d..6a60c3cf97 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -5,6 +5,7 @@ #include "qemu/typedefs.h" #include "sysemu/blockdev.h" +#include "sysemu/accel.h" #include "hw/qdev.h" #include "qom/object.h" @@ -131,6 +132,7 @@ struct MachineState { char *kernel_cmdline; char *initrd_filename; const char *cpu_model; + AccelState *accelerator; }; #endif |