diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2010-05-31 14:43:32 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-01 13:48:43 -0500 |
commit | 637503d122eb7656d91a8489e254d9e880be7504 (patch) | |
tree | fe097fd978c84b99a0b9178f02e9e0807058512e /qemu-char.c | |
parent | b40292e7115da8814da3d8acd33267202d27d678 (diff) | |
download | qemu-637503d122eb7656d91a8489e254d9e880be7504.zip qemu-637503d122eb7656d91a8489e254d9e880be7504.tar.gz qemu-637503d122eb7656d91a8489e254d9e880be7504.tar.bz2 |
Monitor: Drop QMP documentation from code
Previous commit added QMP documentation to the qemu-monitor.hx
file, it's is a copy of this information.
While it's good to keep it near code, maintaining two copies of
the same information is too hard and has little benefit as we
don't expect client writers to consult the code to find how to
use a QMP command.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/qemu-char.c b/qemu-char.c index ac65a1c..faaf624 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -2528,22 +2528,6 @@ void qemu_chr_info_print(Monitor *mon, const QObject *ret_data) qlist_iter(qobject_to_qlist(ret_data), qemu_chr_qlist_iter, mon); } -/** - * qemu_chr_info(): Character devices information - * - * Each device is represented by a QDict. The returned QObject is a QList - * of all devices. - * - * The QDict contains the following: - * - * - "label": device's label - * - "filename": device's file - * - * Example: - * - * [ { "label": "monitor", "filename", "stdio" }, - * { "label": "serial0", "filename": "vc" } ] - */ void qemu_chr_info(Monitor *mon, QObject **ret_data) { QList *chr_list; |