diff options
| author | Daniel P. Berrangé <berrange@redhat.com> | 2021-09-09 16:54:02 +0100 |
|---|---|---|
| committer | Daniel P. Berrangé <berrange@redhat.com> | 2021-11-02 15:55:13 +0000 |
| commit | 0e33e3d2c40f68f71d628dfe57d460f47e416e78 (patch) | |
| tree | 0fb68ef0436460f6f3813ecc21a9dd14b974e039 /docs/devel/writing-monitor-commands.rst | |
| parent | 0ca117a756a79c0f93c9030b5c5a92982e3b0ee5 (diff) | |
| download | focaccia-qemu-0e33e3d2c40f68f71d628dfe57d460f47e416e78.tar.gz focaccia-qemu-0e33e3d2c40f68f71d628dfe57d460f47e416e78.zip | |
docs/devel: rename file for writing monitor commands
The file already covers writing HMP commands, in addition to the QMP commands, so it deserves a more general name. Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to '')
| -rw-r--r-- | docs/devel/writing-monitor-commands.rst (renamed from docs/devel/writing-qmp-commands.rst) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/devel/writing-qmp-commands.rst b/docs/devel/writing-monitor-commands.rst index 6a10a06c48..4a4c051624 100644 --- a/docs/devel/writing-qmp-commands.rst +++ b/docs/devel/writing-monitor-commands.rst @@ -1,8 +1,8 @@ -How to write QMP commands using the QAPI framework -================================================== +How to write monitor commands +============================= This document is a step-by-step guide on how to write new QMP commands using -the QAPI framework. It also shows how to implement new style HMP commands. +the QAPI framework and HMP commands. This document doesn't discuss QMP protocol level details, nor does it dive into the QAPI framework implementation. |