diff options
author | Thomas Huth <thuth@redhat.com> | 2023-04-19 14:48:31 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-04-20 11:25:32 +0200 |
commit | c138c3b864245d7721a03f01f97e70e47d253839 (patch) | |
tree | d75481d839e58a0f8ba5e5d639fbda12fc5c9718 /include | |
parent | 992deb4c4ff88540edf4f337238e5f84dcdab094 (diff) | |
download | qemu-c138c3b864245d7721a03f01f97e70e47d253839.zip qemu-c138c3b864245d7721a03f01f97e70e47d253839.tar.gz qemu-c138c3b864245d7721a03f01f97e70e47d253839.tar.bz2 |
cpu: Remove parameter of list_cpus()
The "optarg" parameter is completely unused, so let's drop it.
Message-Id: <20230419124831.678079-1-thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/cpu-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index 6feaa40..565c203 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -165,6 +165,6 @@ int cpu_memory_rw_debug(CPUState *cpu, vaddr addr, /* vl.c */ extern int singlestep; -void list_cpus(const char *optarg); +void list_cpus(void); #endif /* CPU_COMMON_H */ |