diff options
author | Kevin Wolf <kwolf@redhat.com> | 2019-06-13 17:33:57 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-06-17 20:36:56 +0200 |
commit | e84328faa99ae50fd9ed36a615927e94327cf249 (patch) | |
tree | 0126df000c03d516b7167d8d0d44ced99a4431d3 /docs/devel | |
parent | a0cd5e1c8e7fb1dc882483589fd809ca083a2725 (diff) | |
download | qemu-e84328faa99ae50fd9ed36a615927e94327cf249.zip |
Move monitor.c to monitor/misc.c
Create a new monitor/ subdirectory and move monitor.c there. As the plan
is to move the monitor core into separate files, use the chance to
rename it to misc.c.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190613153405.24769-8-kwolf@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs/devel')
-rw-r--r-- | docs/devel/writing-qmp-commands.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/writing-qmp-commands.txt b/docs/devel/writing-qmp-commands.txt index 9dfc62bf5a..cc6ecd6d5d 100644 --- a/docs/devel/writing-qmp-commands.txt +++ b/docs/devel/writing-qmp-commands.txt @@ -470,7 +470,7 @@ it's good practice to always check for errors. Another important detail is that HMP's "info" commands don't go into the hmp-commands.hx. Instead, they go into the info_cmds[] table, which is defined -in the monitor.c file. The entry for the "info alarmclock" follows: +in the monitor/misc.c file. The entry for the "info alarmclock" follows: { .name = "alarmclock", |