From 418173c72f2eab47a3bb76d1d379cdb215d711d0 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Thu, 26 Nov 2009 22:58:51 -0200 Subject: monitor: Introduce MONITOR_USE_CONTROL flag 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 Signed-off-by: Anthony Liguori --- monitor.h | 1 + 1 file changed, 1 insertion(+) (limited to 'monitor.h') diff --git a/monitor.h b/monitor.h index c7d2d0bca0..6cb1d4b353 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); -- cgit v1.2.1