monitor: Rename handle_user_command() to handle_hmp_command()
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
710aec915d
commit
7ef6cf6341
10
monitor.c
10
monitor.c
@ -574,7 +574,7 @@ static int do_qmp_capabilities(Monitor *mon, const QDict *params,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_user_command(Monitor *mon, const char *cmdline);
|
static void handle_hmp_command(Monitor *mon, const char *cmdline);
|
||||||
|
|
||||||
static void monitor_data_init(Monitor *mon)
|
static void monitor_data_init(Monitor *mon)
|
||||||
{
|
{
|
||||||
@ -613,7 +613,7 @@ char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_user_command(&hmp, command_line);
|
handle_hmp_command(&hmp, command_line);
|
||||||
cur_mon = old_mon;
|
cur_mon = old_mon;
|
||||||
|
|
||||||
qemu_mutex_lock(&hmp.out_lock);
|
qemu_mutex_lock(&hmp.out_lock);
|
||||||
@ -4025,7 +4025,7 @@ void monitor_set_error(Monitor *mon, QError *qerror)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_user_command(Monitor *mon, const char *cmdline)
|
static void handle_hmp_command(Monitor *mon, const char *cmdline)
|
||||||
{
|
{
|
||||||
QDict *qdict;
|
QDict *qdict;
|
||||||
const mon_cmd_t *cmd;
|
const mon_cmd_t *cmd;
|
||||||
@ -5070,7 +5070,7 @@ static void monitor_read(void *opaque, const uint8_t *buf, int size)
|
|||||||
if (size == 0 || buf[size - 1] != 0)
|
if (size == 0 || buf[size - 1] != 0)
|
||||||
monitor_printf(cur_mon, "corrupted command\n");
|
monitor_printf(cur_mon, "corrupted command\n");
|
||||||
else
|
else
|
||||||
handle_user_command(cur_mon, (char *)buf);
|
handle_hmp_command(cur_mon, (char *)buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
cur_mon = old_mon;
|
cur_mon = old_mon;
|
||||||
@ -5082,7 +5082,7 @@ static void monitor_command_cb(void *opaque, const char *cmdline,
|
|||||||
Monitor *mon = opaque;
|
Monitor *mon = opaque;
|
||||||
|
|
||||||
monitor_suspend(mon);
|
monitor_suspend(mon);
|
||||||
handle_user_command(mon, cmdline);
|
handle_hmp_command(mon, cmdline);
|
||||||
monitor_resume(mon);
|
monitor_resume(mon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user