From: Jan Kiszka Date: Mon, 20 Aug 2012 18:11:36 +0000 (+0200) Subject: Drop redundant resume_all_vcpus() from main() X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~1880^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7bdf659c16e1cefd61f53648503d8c060668d6b;p=sdk%2Femulator%2Fqemu.git Drop redundant resume_all_vcpus() from main() VCPUs are either resumed directly via vm_start(), after the incoming migration is done, or when a continue command is issued. We don't need the explicit resume before entering main_loop(). Signed-off-by: Jan Kiszka Signed-off-by: Andreas Färber --- diff --git a/vl.c b/vl.c index 41c367d..6e6225f 100644 --- a/vl.c +++ b/vl.c @@ -4415,7 +4415,6 @@ int main(int argc, char **argv, char **envp) os_setup_post(); - resume_all_vcpus(); main_loop(); bdrv_close_all(); pause_all_vcpus();