From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NDpBH-0001VF-Ex for qemu-devel@nongnu.org; Thu, 26 Nov 2009 19:59:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NDpBC-0001SZ-Fh for qemu-devel@nongnu.org; Thu, 26 Nov 2009 19:59:26 -0500 Received: from [199.232.76.173] (port=48282 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NDpBC-0001SP-8q for qemu-devel@nongnu.org; Thu, 26 Nov 2009 19:59:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45219) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NDpBB-0004O4-Ka for qemu-devel@nongnu.org; Thu, 26 Nov 2009 19:59:21 -0500 From: Luiz Capitulino Date: Thu, 26 Nov 2009 22:58:51 -0200 Message-Id: <1259283550-3597-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1259283550-3597-1-git-send-email-lcapitulino@redhat.com> References: <1259283550-3597-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 01/20] monitor: Introduce MONITOR_USE_CONTROL flag List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, avi@redhat.com, armbru@redhat.com This flag will be set when Monitor enters "control mode", in which the output will be defined by the QEMU Monitor Protocol. This also introduces a macro to check if the flag is set. Signed-off-by: Luiz Capitulino --- monitor.c | 6 ++++++ monitor.h | 1 + 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/monitor.c b/monitor.c index fcbe9d4..5907252 100644 --- a/monitor.c +++ b/monitor.c @@ -119,6 +119,12 @@ Monitor *cur_mon = NULL; static void monitor_command_cb(Monitor *mon, const char *cmdline, void *opaque); +/* Return true if in control mode, false otherwise */ +static inline int monitor_ctrl_mode(const Monitor *mon) +{ + return (mon->flags & MONITOR_USE_CONTROL); +} + static void monitor_read_command(Monitor *mon, int show_prompt) { readline_start(mon->rs, "(qemu) ", 0, monitor_command_cb, NULL); diff --git a/monitor.h b/monitor.h index c7d2d0b..6cb1d4b 100644 --- a/monitor.h +++ b/monitor.h @@ -11,6 +11,7 @@ extern Monitor *cur_mon; /* flags for monitor_init */ #define MONITOR_IS_DEFAULT 0x01 #define MONITOR_USE_READLINE 0x02 +#define MONITOR_USE_CONTROL 0x04 void monitor_init(CharDriverState *chr, int flags); -- 1.6.6.rc0.50.gaf06e