diff options
author | Markus Armbruster <armbru@redhat.com> | 2015-02-13 15:48:19 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-02-26 14:52:13 +0100 |
commit | b3adf5acb57dee14a74e57ab4f16cd1a83e5a7d2 (patch) | |
tree | b69c364c5b8fa35cd4797b82320f5a19622ce5ff /qtest.c | |
parent | 5bdb59a290cfc7332fdc23c6368310e0327e3828 (diff) | |
download | qemu-b3adf5acb57dee14a74e57ab4f16cd1a83e5a7d2.tar.gz qemu-b3adf5acb57dee14a74e57ab4f16cd1a83e5a7d2.tar.bz2 qemu-b3adf5acb57dee14a74e57ab4f16cd1a83e5a7d2.zip |
qtest: Use qemu_opt_set() instead of qemu_opts_parse()
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'qtest.c')
-rw-r--r-- | qtest.c | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -520,16 +520,13 @@ static void qtest_event(void *opaque, int event) } } -static void configure_qtest_icount(const char *options) +static int qtest_init_accel(MachineState *ms) { - QemuOpts *opts = qemu_opts_parse(qemu_find_opts("icount"), options, 1); + QemuOpts *opts = qemu_opts_create(qemu_find_opts("icount"), NULL, 0, + &error_abort); + qemu_opt_set(opts, "shift", "0", &error_abort); configure_icount(opts, &error_abort); qemu_opts_del(opts); -} - -static int qtest_init_accel(MachineState *ms) -{ - configure_qtest_icount("0"); return 0; } |