From patchwork Thu Nov 19 15:13:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 38844 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id EDD0DB7B64 for ; Fri, 20 Nov 2009 02:23:47 +1100 (EST) Received: from localhost ([127.0.0.1]:40056 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NB8rI-00040s-UJ for incoming@patchwork.ozlabs.org; Thu, 19 Nov 2009 10:23:44 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NB8hr-0007UF-MF for qemu-devel@nongnu.org; Thu, 19 Nov 2009 10:13:59 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NB8hm-0007Qz-Kn for qemu-devel@nongnu.org; Thu, 19 Nov 2009 10:13:58 -0500 Received: from [199.232.76.173] (port=49909 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NB8hm-0007Qb-71 for qemu-devel@nongnu.org; Thu, 19 Nov 2009 10:13:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53905) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NB8hl-00022B-Mx for qemu-devel@nongnu.org; Thu, 19 Nov 2009 10:13:54 -0500 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nAJFDqEW004142 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 19 Nov 2009 10:13:52 -0500 Received: from localhost (vpn-9-45.rdu.redhat.com [10.11.9.45]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nAJFDpg5017487; Thu, 19 Nov 2009 10:13:51 -0500 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Thu, 19 Nov 2009 13:13:29 -0200 Message-Id: <1258643623-8636-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1258643623-8636-1-git-send-email-lcapitulino@redhat.com> References: <1258643623-8636-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: aliguori@us.ibm.com, avi@redhat.com Subject: [Qemu-devel] [PATCH 01/15] monitor: Introduce MONITOR_USE_CONTROL flag X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 45ab883..e7c6451 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);