diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-08-28 15:27:08 -0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-04 09:37:29 -0500 |
commit | 3818318682c3aaca7856f577ec61e05e5ad449ea (patch) | |
tree | 0789527506dbfc678a379263d293a0d41bb08819 /qemu-monitor.hx | |
parent | Introduce QDict (diff) | |
download | qemu-kvm-3818318682c3aaca7856f577ec61e05e5ad449ea.tar.gz qemu-kvm-3818318682c3aaca7856f577ec61e05e5ad449ea.tar.bz2 qemu-kvm-3818318682c3aaca7856f577ec61e05e5ad449ea.zip |
Add wrappers to functions used by the Monitor
Some functions exported to be used by the Monitor as command
handlers are also called in other places as regular functions.
When those functions got ported to use the Monitor dictionary
to pass argments, the callers will have to setup a dictionary
to be able to call them.
To avoid this problem, this commit add wrappers to those functions,
so that we change the wrapper to accept the dictionary, letting
the current functions as is.
The following wrappers are being added:
- do_help_cmd()
- do_pci_device_hot_remove()
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index f56354bc6..2ef4bf6e6 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -9,7 +9,7 @@ STEXI @table @option ETEXI - { "help|?", "s?", help_cmd, "[cmd]", "show the help" }, + { "help|?", "s?", do_help_cmd, "[cmd]", "show the help" }, STEXI @item help or ? [@var{cmd}] Show the help for all commands or just for command @var{cmd}. @@ -517,7 +517,7 @@ Hot-add PCI device. ETEXI #if defined(TARGET_I386) - { "pci_del", "s", pci_device_hot_remove, "[[<domain>:]<bus>:]<slot>", "hot remove PCI device" }, + { "pci_del", "s", do_pci_device_hot_remove, "[[<domain>:]<bus>:]<slot>", "hot remove PCI device" }, #endif STEXI @item pci_del |