diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-11-22 17:58:31 -0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-12-06 11:40:01 -0200 |
commit | e42e818bf45f2f70cdd88a3864efcc3964039f37 (patch) | |
tree | edc33f757981f6a1a5005b1ee3229b7e38589e46 /qapi-schema.json | |
parent | 6d3962bf848ba06296554976f9fd86af805584bb (diff) |
qapi: Convert cont
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 7f9aa94f1a..b6fd3f1d35 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -949,3 +949,20 @@ ## { 'command': 'pmemsave', 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} } + +## +# @cont: +# +# Resume guest VCPU execution. +# +# Since: 0.14.0 +# +# Returns: If successful, nothing +# If the QEMU is waiting for an incoming migration, MigrationExpected +# If QEMU was started with an encrypted block device and a key has +# not yet been set, DeviceEncrypted. +# +# Notes: This command will succeed if the guest is currently running. +## +{ 'command': 'cont' } + |