diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-10-09 11:09:52 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-10-12 00:37:39 +0300 |
commit | b216b5daa57ce068183ce865c163f4df01b74614 (patch) | |
tree | b721ca2dab228a3722c2c3096155682d1848382f /include/sysemu | |
parent | 0848ca87b76b21639f314bd348ae8470db5b22e2 (diff) |
cpus: Remove unused smp_cores/smp_threads declarations
Commit a5e0b33119 ("vl.c: Replace smp global variables
with smp machine properties") removed the last uses of
the smp_cores / smp_threads variables but forgot to
remove their declarations. Do it now.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/cpus.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/sysemu/cpus.h b/include/sysemu/cpus.h index 0535a4c68a..b4a566cfe7 100644 --- a/include/sysemu/cpus.h +++ b/include/sysemu/cpus.h @@ -50,11 +50,4 @@ void cpu_synchronize_all_post_reset(void); void cpu_synchronize_all_post_init(void); void cpu_synchronize_all_pre_loadvm(void); -#ifndef CONFIG_USER_ONLY -/* vl.c */ -/* *-user doesn't have configurable SMP topology */ -extern int smp_cores; -extern int smp_threads; -#endif - #endif |