From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCUG3-0005u5-T5 for qemu-devel@nongnu.org; Tue, 16 Dec 2008 02:22:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCUG2-0005sR-GB for qemu-devel@nongnu.org; Tue, 16 Dec 2008 02:22:19 -0500 Received: from [199.232.76.173] (port=47738 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCUG2-0005sE-7C for qemu-devel@nongnu.org; Tue, 16 Dec 2008 02:22:18 -0500 Received: from winker.dv.fh-frankfurt.de ([194.95.81.208]:33639) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LCUG1-0004vm-Sa for qemu-devel@nongnu.org; Tue, 16 Dec 2008 02:22:18 -0500 Received: from [192.168.10.30] by winker.dv.fh-frankfurt.de with esmtp (Exim 4.69) (envelope-from ) id 1LCUFx-0005TY-Jo for qemu-devel@nongnu.org; Tue, 16 Dec 2008 08:22:13 +0100 Message-ID: <494756D6.1010300@gmx.net> Date: Tue, 16 Dec 2008 08:20:54 +0100 From: Philipp Wehrheim MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] new monitor func status Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hey, attached is a small patch that adds the new info subcommand - status. The status indicates if the VM is running or paused this info makes life for (stateless) Qemu/KVM frontends easier. Since the info is just there why not make it available? Please consider applying. flip -- diff --git a/qemu/monitor.c b/qemu/monitor.c index 3948aae..ee8476b 100644 --- a/qemu/monitor.c +++ b/qemu/monitor.c @@ -1418,6 +1418,15 @@ static void do_inject_nmi(int cpu_index) } #endif +static void do_info_status(void) +{ + if (vm_running) + term_printf("VM status: running\n"); + else + term_printf("VM status: paused\n"); +} + + static void do_balloon(int value) { ram_addr_t target = value; @@ -1582,6 +1591,8 @@ static const term_cmd_t info_cmds[] = { "", "show capture information" }, { "snapshots", "", do_info_snapshots, "", "show the currently saved VM snapshots" }, + { "status", "", do_info_status, + "", "show the current VM status (running|paused)" }, { "pcmcia", "", pcmcia_info, "", "show guest PCMCIA status" }, { "mice", "", do_info_mice,