summaryrefslogtreecommitdiff
path: root/monitor.h
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2009-11-26 22:58:51 -0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-12-03 09:41:21 -0600
commitf2c6905246535e79c603f9c353f4f15069e4e9df (patch)
treedbbe0dd4736b26ba444d5d776501c6bb21b9d33f /monitor.h
parente06209032b2f2de3bbfbec4eb9faae10e54938cb (diff)
downloadqemu-f2c6905246535e79c603f9c353f4f15069e4e9df.tar.gz
qemu-f2c6905246535e79c603f9c353f4f15069e4e9df.tar.bz2
qemu-f2c6905246535e79c603f9c353f4f15069e4e9df.zip
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 <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.h')
-rw-r--r--monitor.h1
1 files changed, 1 insertions, 0 deletions
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);