Il 30/01/2014 18:28, Marcel Apfelbaum ha scritto:
> QEMUMachineInitArgs args = { .machine = machine,
> .ram_size = ram_size,
> .boot_order = boot_order,
> .kernel_filename = kernel_filename,
> .kernel_cmdline = kernel_cmdline,
> .initrd_filename = initrd_filename,
> .cpu_model = cpu_model };
> machine->init(&args);
Sure it will be by value or... I plan to replace QEMUMachineInitArgs
with regular QOM properties of QemuMachineState.
Yes---by value for now, then it can removed when you get to
s/QEMUMachineInitArgs/QemuMachineState.
Including the "old" object by value BTW is how the CPU conversion
started as well.
Paolo