mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
monitor: remove mhandler.cmd_new
This is no longer necessary now that we aren't using middle mode anymore. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-Id: <20160912091913.15831-12-marcandre.lureau@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
9e812b6adc
commit
2b9e35760a
4 changed files with 170 additions and 173 deletions
|
@ -335,7 +335,7 @@ we should add it to the hmp-commands.hx file:
|
|||
.args_type = "message:s?",
|
||||
.params = "hello-world [message]",
|
||||
.help = "Print message to the standard output",
|
||||
.mhandler.cmd = hmp_hello_world,
|
||||
.cmd = hmp_hello_world,
|
||||
},
|
||||
|
||||
STEXI
|
||||
|
@ -515,7 +515,7 @@ in the monitor.c file. The entry for the "info alarmclock" follows:
|
|||
.args_type = "",
|
||||
.params = "",
|
||||
.help = "show information about the alarm clock",
|
||||
.mhandler.cmd = hmp_info_alarm_clock,
|
||||
.cmd = hmp_info_alarm_clock,
|
||||
},
|
||||
|
||||
To test this, run qemu and type "info alarmclock" in the user monitor.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue