mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
qapi: Remove deprecated 'singlestep' member of StatusInfo
This member has been deprecated before the 8.1 release, in commit
34c18203d4
("qmp: Deprecate 'singlestep' member of StatusInfo").
Time to drop it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240117151430.29235-2-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
1e7886e9e2
commit
fe17522d85
7 changed files with 9 additions and 42 deletions
|
@ -106,25 +106,15 @@
|
|||
#
|
||||
# @running: true if all VCPUs are runnable, false if not runnable
|
||||
#
|
||||
# @singlestep: true if using TCG with one guest instruction per
|
||||
# translation block
|
||||
#
|
||||
# @status: the virtual machine @RunState
|
||||
#
|
||||
# Features:
|
||||
#
|
||||
# @deprecated: Member 'singlestep' is deprecated (with no
|
||||
# replacement).
|
||||
#
|
||||
# Since: 0.14
|
||||
#
|
||||
# Notes: @singlestep is enabled on the command line with '-accel
|
||||
# tcg,one-insn-per-tb=on', or with the HMP 'one-insn-per-tb'
|
||||
# command.
|
||||
##
|
||||
{ 'struct': 'StatusInfo',
|
||||
'data': {'running': 'bool',
|
||||
'singlestep': { 'type': 'bool', 'features': [ 'deprecated' ]},
|
||||
'status': 'RunState'} }
|
||||
|
||||
##
|
||||
|
@ -140,7 +130,6 @@
|
|||
#
|
||||
# -> { "execute": "query-status" }
|
||||
# <- { "return": { "running": true,
|
||||
# "singlestep": false,
|
||||
# "status": "running" } }
|
||||
##
|
||||
{ 'command': 'query-status', 'returns': 'StatusInfo',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue