summaryrefslogtreecommitdiffstats
path: root/monitor.c
diff options
context:
space:
mode:
authorJan Kiszka2010-06-16 00:38:39 +0200
committerLuiz Capitulino2010-07-01 18:58:38 +0200
commit8ac470c1f945601de9f1f577791c48e95d5340db (patch)
treecafcc88b0938cec162e49dc16a555dd309cf6a2b /monitor.c
parentmonitor: Fix command completion vs. boolean switches (diff)
downloadqemu-8ac470c1f945601de9f1f577791c48e95d5340db.tar.gz
qemu-8ac470c1f945601de9f1f577791c48e95d5340db.tar.xz
qemu-8ac470c1f945601de9f1f577791c48e95d5340db.zip
monitor: Establish cmd flags and convert the async tag
As we want to add more flags to monitor commands, convert the only so far existing one accordingly. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/monitor.c b/monitor.c
index b375f102b7..980e98de06 100644
--- a/monitor.c
+++ b/monitor.c
@@ -112,7 +112,7 @@ typedef struct mon_cmd_t {
int (*cmd_async)(Monitor *mon, const QDict *params,
MonitorCompletion *cb, void *opaque);
} mhandler;
- int async;
+ int flags;
} mon_cmd_t;
/* file descriptors passed via SCM_RIGHTS */
@@ -327,7 +327,7 @@ static inline int monitor_handler_ported(const mon_cmd_t *cmd)
static inline bool monitor_handler_is_async(const mon_cmd_t *cmd)
{
- return cmd->async != 0;
+ return cmd->flags & MONITOR_CMD_ASYNC;
}
static inline int monitor_has_error(const Monitor *mon)
@@ -2536,7 +2536,7 @@ static const mon_cmd_t info_cmds[] = {
.help = "show balloon information",
.user_print = monitor_print_balloon,
.mhandler.info_async = do_info_balloon,
- .async = 1,
+ .flags = MONITOR_CMD_ASYNC,
},
{
.name = "qtree",