diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-17 16:14:30 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-01-19 11:38:32 +0100 |
commit | c61a0d31f8db4cb6c54e473e9a44dca616969414 (patch) | |
tree | 052f91491835aa9dab836b7540df808a0fccc487 /bsd-user/main.c | |
parent | 97b6e1d35f35463307bf9086b7a3fd8bf3212a19 (diff) | |
download | qemu-c61a0d31f8db4cb6c54e473e9a44dca616969414.zip qemu-c61a0d31f8db4cb6c54e473e9a44dca616969414.tar.gz qemu-c61a0d31f8db4cb6c54e473e9a44dca616969414.tar.bz2 |
cli: Remove deprecated '-singlestep' command line option
This option has been deprecated before the 8.1 release,
in commit 12fd0f41d0 ("Document that -singlestep command
line option is deprecated"). Time to drop it.
Inspired-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240117151430.29235-4-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'bsd-user/main.c')
-rw-r--r-- | bsd-user/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 4de226d..e5efb7b 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -163,7 +163,6 @@ static void usage(void) " (use '-d help' for a list of log items)\n" "-D logfile write logs to 'logfile' (default stderr)\n" "-one-insn-per-tb run with one guest instruction per emulated TB\n" - "-singlestep deprecated synonym for -one-insn-per-tb\n" "-strace log system calls\n" "-trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n" " specify tracing options\n" @@ -391,7 +390,7 @@ int main(int argc, char **argv) (void) envlist_unsetenv(envlist, "LD_PRELOAD"); } else if (!strcmp(r, "seed")) { seed_optarg = optarg; - } else if (!strcmp(r, "singlestep") || !strcmp(r, "one-insn-per-tb")) { + } else if (!strcmp(r, "one-insn-per-tb")) { opt_one_insn_per_tb = true; } else if (!strcmp(r, "strace")) { do_strace = 1; |