diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-17 16:14:29 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-01-19 11:38:32 +0100 |
commit | 97b6e1d35f35463307bf9086b7a3fd8bf3212a19 (patch) | |
tree | f04c33c050424bf2a079d47c9f26fd5dd3cd7ff4 | |
parent | fe17522d854aa7da4c01ca80ef194af4c2aaead3 (diff) | |
download | qemu-97b6e1d35f35463307bf9086b7a3fd8bf3212a19.zip qemu-97b6e1d35f35463307bf9086b7a3fd8bf3212a19.tar.gz qemu-97b6e1d35f35463307bf9086b7a3fd8bf3212a19.tar.bz2 |
hmp: Remove deprecated 'singlestep' command
This command has been deprecated before the 8.1 release,
in commit e9ccfdd91d ("hmp: Add 'one-insn-per-tb' command
equivalent to 'singlestep'"). Time to drop it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: "Dr. David Alan Gilbert" <dave@treblig.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240117151430.29235-3-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | docs/about/deprecated.rst | 9 | ||||
-rw-r--r-- | docs/about/removed-features.rst | 6 | ||||
-rw-r--r-- | hmp-commands.hx | 13 | ||||
-rw-r--r-- | tests/qtest/test-hmp.c | 1 |
4 files changed, 6 insertions, 23 deletions
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst index 25527da..316a26a 100644 --- a/docs/about/deprecated.rst +++ b/docs/about/deprecated.rst @@ -167,15 +167,6 @@ points was removed in 7.0. However QMP still exposed the vcpu parameter. This argument has now been deprecated and the remaining remaining trace points that used it are selected just by name. -Human Monitor Protocol (HMP) commands -------------------------------------- - -``singlestep`` (since 8.1) -'''''''''''''''''''''''''' - -The ``singlestep`` command has been replaced by the ``one-insn-per-tb`` -command, which has the same behaviour but a less misleading name. - Host Architectures ------------------ diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst index a8546f4..855d788 100644 --- a/docs/about/removed-features.rst +++ b/docs/about/removed-features.rst @@ -635,6 +635,12 @@ Use ``migrate-set-parameters`` instead. This command didn't produce any output already. Removed with no replacement. +``singlestep`` (removed in 9.0) +''''''''''''''''''''''''''''''' + +The ``singlestep`` command has been replaced by the ``one-insn-per-tb`` +command, which has the same behaviour but a less misleading name. + Guest Emulator ISAs ------------------- diff --git a/hmp-commands.hx b/hmp-commands.hx index 2db5701..17b5ea8 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -399,19 +399,6 @@ SRST ERST { - .name = "singlestep", - .args_type = "option:s?", - .params = "[on|off]", - .help = "deprecated synonym for one-insn-per-tb", - .cmd = hmp_one_insn_per_tb, - }, - -SRST -``singlestep [off]`` - This is a deprecated synonym for the one-insn-per-tb command. -ERST - - { .name = "stop|s", .args_type = "", .params = "", diff --git a/tests/qtest/test-hmp.c b/tests/qtest/test-hmp.c index fc9125f..1b2e075 100644 --- a/tests/qtest/test-hmp.c +++ b/tests/qtest/test-hmp.c @@ -64,7 +64,6 @@ static const char *hmp_cmds[] = { "qom-get /machine initrd", "screendump /dev/null", "sendkey x", - "singlestep on", "wavcapture /dev/null", "stopcapture 0", "sum 0 512", |