mirror of
https://github.com/qemu/qemu.git
synced 2025-09-26 16:12:25 +00:00

'dummy' helpers are specific to accelerator implementations, no need to expose them via "system/cpus.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-Id: <20250703173248.44995-27-philmd@linaro.org>
15 lines
221 B
C
15 lines
221 B
C
/*
|
|
* Dummy cpu thread code
|
|
*
|
|
* Copyright IBM, Corp. 2011
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef ACCEL_DUMMY_CPUS_H
|
|
#define ACCEL_DUMMY_CPUS_H
|
|
|
|
void dummy_start_vcpu_thread(CPUState *cpu);
|
|
|
|
#endif
|