From c35734b2a6f9b028edacd5813ff271728ce2a9e3 Mon Sep 17 00:00:00 2001 From: ths Date: Mon, 19 Mar 2007 15:17:08 +0000 Subject: Add -name option, by Anthony Liguori. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2505 c046a42c-6fe2-441c-8c8c-71466251a162 --- monitor.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'monitor.c') diff --git a/monitor.c b/monitor.c index de0783bf98..379733333c 100644 --- a/monitor.c +++ b/monitor.c @@ -235,6 +235,12 @@ static void do_info_version(void) term_printf("%s\n", QEMU_VERSION); } +static void do_info_name(void) +{ + if (qemu_name) + term_printf("%s\n", qemu_name); +} + static void do_info_block(void) { bdrv_info(); @@ -1314,6 +1320,8 @@ static term_cmd_t info_cmds[] = { "", "show which guest mouse is receiving events" }, { "vnc", "", do_info_vnc, "", "show the vnc server status"}, + { "name", "", do_info_name, + "", "show the current VM name" }, #if defined(TARGET_PPC) { "cpustats", "", do_info_cpu_stats, "", "show CPU statistics", }, -- cgit v1.2.1