mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Monitor patches
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJV6YMbAAoJEDhwtADrkYZTmqUP/0PioppNHxOM+ah+9SoNBq+K jf6JLfxUkazPamtI1V3BYEhFgOMs+frQ/VG9mJjWdHeARHYePJce7arrUYV71L2+ Z9hWBM9I71axRG449ox8qwk2NZRNwGPoF4gQeoOYUaiDsQIQVpX69lIiF2XkJ1+c v521rLmfprHcJW9Ggzpds45FLUv8t3tvNobuBZO2XAs2oXdesBgIIp2HjL8onFlu r1LLnZWxdROe9HM9HXvjWC5aWmgRK0kgAoaEWo9cQj5jMGBNYQDKH56eGx03IZkF 29+AZ0ACI3b1OwlK7DK/YAYR78LR9z+TA+qf42+SPWLapImmH8qwrTN0vZpTs6GP caFGwklGyD6sQHiO5fmkSdxrES/W1ndshf8PfulgHQ4Wjb1rIcgCxl1gcH+zyT1G uBHJ7tozpdYZ78T60wY8dj46AidPX9Ru7+Y3D8fTncGuHJa/LacPp2AehA0lEbCK DGG5XFOJKIHBy0AXFPIyJ6pNPzU93jXGFf6pI5c15nMoCkh2wiNPWRM3ZXTrgWWc l7GZdwTewcm45UZVaITec+IJca7EjQIBvfUxs8yCaeBe6aEJQKw/P9lgvZPzt8Tk ozyCkQQIlnRupDb18p+MRD1/U2SZSjrTrlY/qNm/uBCyStjWKsyYFYvlcPFWSlOs BqE2BpLiUR2XDIuqe6E4 =6HLt -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2015-09-04' into staging Monitor patches # gpg: Signature made Fri 04 Sep 2015 12:40:11 BST using RSA key ID EB918653 # gpg: Good signature from "Markus Armbruster <armbru@redhat.com>" # gpg: aka "Markus Armbruster <armbru@pond.sub.org>" * remotes/armbru/tags/pull-monitor-2015-09-04: hmp: add info iothreads command qmp-shell: add documentation Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
b597aa037d
5 changed files with 58 additions and 0 deletions
|
@ -29,6 +29,41 @@
|
|||
# (QEMU) device_add driver=e1000 id=net1
|
||||
# {u'return': {}}
|
||||
# (QEMU)
|
||||
#
|
||||
# key=value pairs also support Python or JSON object literal subset notations,
|
||||
# without spaces. Dictionaries/objects {} are supported as are arrays [].
|
||||
#
|
||||
# example-command arg-name1={'key':'value','obj'={'prop':"value"}}
|
||||
#
|
||||
# Both JSON and Python formatting should work, including both styles of
|
||||
# string literal quotes. Both paradigms of literal values should work,
|
||||
# including null/true/false for JSON and None/True/False for Python.
|
||||
#
|
||||
#
|
||||
# Transactions have the following multi-line format:
|
||||
#
|
||||
# transaction(
|
||||
# action-name1 [ arg-name1=arg1 ] ... [arg-nameN=argN ]
|
||||
# ...
|
||||
# action-nameN [ arg-name1=arg1 ] ... [arg-nameN=argN ]
|
||||
# )
|
||||
#
|
||||
# One line transactions are also supported:
|
||||
#
|
||||
# transaction( action-name1 ... )
|
||||
#
|
||||
# For example:
|
||||
#
|
||||
# (QEMU) transaction(
|
||||
# TRANS> block-dirty-bitmap-add node=drive0 name=bitmap1
|
||||
# TRANS> block-dirty-bitmap-clear node=drive0 name=bitmap0
|
||||
# TRANS> )
|
||||
# {"return": {}}
|
||||
# (QEMU)
|
||||
#
|
||||
# Use the -v and -p options to activate the verbose and pretty-print options,
|
||||
# which will echo back the properly formatted JSON-compliant QMP that is being
|
||||
# sent to QEMU, which is useful for debugging and documentation generation.
|
||||
|
||||
import qmp
|
||||
import json
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue