From 3c07f8e89488c208391863cc7e26d106d7c0e46e Mon Sep 17 00:00:00 2001 From: pbrook Date: Sun, 21 Jan 2007 16:47:01 +0000 Subject: Don't resume guest when gdb connection terminates and -S specified. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2343 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vl.c') diff --git a/vl.c b/vl.c index 9f620cb..f92c989 100644 --- a/vl.c +++ b/vl.c @@ -172,6 +172,7 @@ int daemonize = 0; const char *option_rom[MAX_OPTION_ROMS]; int nb_option_roms; int semihosting_enabled = 0; +int autostart = 1; /***********************************************************/ /* x86 ISA bus support */ @@ -6530,7 +6531,6 @@ int main(int argc, char **argv) const char *kernel_filename, *kernel_cmdline; DisplayState *ds = &display_state; int cyls, heads, secs, translation; - int start_emulation = 1; char net_clients[MAX_NET_CLIENTS][256]; int nb_net_clients; int optind; @@ -6838,7 +6838,7 @@ int main(int argc, char **argv) bios_dir = optarg; break; case QEMU_OPTION_S: - start_emulation = 0; + autostart = 0; break; case QEMU_OPTION_k: keyboard_layout = optarg; @@ -7254,7 +7254,7 @@ int main(int argc, char **argv) { /* XXX: simplify init */ read_passwords(); - if (start_emulation) { + if (autostart) { vm_start(); } } -- cgit v1.1