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.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'monitor.c') diff --git a/monitor.c b/monitor.c index 549e98b47a..6733022a16 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); -- cgit v1.2.3