qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] info version


From: Anand Kumria
Subject: [Qemu-devel] info version
Date: Sun, 10 Oct 2004 23:28:59 +1000
User-agent: Pan/0.14.2.91 (As She Crawled Across the Table (Debian GNU/Linux))

Hi,

I regularly have a number of different versions of qemu installed. The
monitor display the version number on the first line but, for me, it has
frequently scrolled away.

The attached patch is a small 'info version' command.

Regards,
Anand


diff -X dont-diff -urN upstream/monitor.c my-versions/monitor.c
--- upstream/monitor.c  2004-10-10 04:08:01.000000000 +1000
+++ my-versions/monitor.c       2004-10-10 18:43:45.000000000 +1000
@@ -190,6 +190,11 @@
     cmd->handler();
 }
 
+static void do_info_version(void)
+{
+  term_printf("%s\n", QEMU_VERSION);
+}
+
 static void do_info_network(void)
 {
     int i, j;
@@ -864,6 +869,8 @@
 };
 
 static term_cmd_t info_cmds[] = {
+    { "version", "", do_info_version,
+      "", "show the version of qemu" },
     { "network", "", do_info_network,
       "", "show the network state" },
     { "block", "", do_info_block,






reply via email to

[Prev in Thread] Current Thread [Next in Thread]