# HG changeset patch # User kasai.takanori@jp.fujitsu.com # Node ID 333949ed3a785141e4ae046d95483fcf185e5836 # Parent 367f0c6efe2178e26ba0194ca795ff098e22a80b qemu-dm monitor does not support the quit command Signed-off-by: Takanori Kasai diff -r 367f0c6efe21 -r 333949ed3a78 tools/ioemu/monitor.c --- a/tools/ioemu/monitor.c Sat Dec 23 21:32:05 2006 +0000 +++ b/tools/ioemu/monitor.c Mon Dec 25 09:23:01 2006 +0900 @@ -305,12 +305,6 @@ static void do_info_history (void) term_printf("%d: '%s'\n", i, str); i++; } -} - -static void do_quit(void) -{ - destroy_hvm_domain(); - exit(0); } static int eject_device(BlockDriverState *bs, int force) @@ -1158,8 +1152,6 @@ static term_cmd_t term_cmds[] = { "", "commit changes to the disk images (if -snapshot is used)" }, { "info", "s?", do_info, "subcommand", "show various information about the system state" }, - { "q|quit", "", do_quit, - "", "quit the emulator" }, { "eject", "-fB", do_eject, "[-f] device", "eject a removable media (use -f to force it)" }, { "change", "BF", do_change,