diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-01-21 12:56:10 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-09 17:00:47 +0100 |
| commit | 8f8dbe04bdafdbe265e9ae25737bb18daacc6ca6 (patch) | |
| tree | 7fdb2b38a44149844da4c7a77d24a8eb0e3e6449 /include/hw/core/cpu.h | |
| parent | c0ee4dd1552b73bdde90875ce62e036a3ca8a007 (diff) | |
| download | focaccia-qemu-8f8dbe04bdafdbe265e9ae25737bb18daacc6ca6.tar.gz focaccia-qemu-8f8dbe04bdafdbe265e9ae25737bb18daacc6ca6.zip | |
cpus: Un-inline cpu_has_work()
In order to expand cpu_has_work(), un-inline it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250125170125.32855-3-philmd@linaro.org>
Diffstat (limited to 'include/hw/core/cpu.h')
| -rw-r--r-- | include/hw/core/cpu.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 2d4ebb7990..a54dd2cf69 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -758,11 +758,7 @@ bool cpu_virtio_is_big_endian(CPUState *cpu); * * Returns: %true if the CPU has work, %false otherwise. */ -static inline bool cpu_has_work(CPUState *cpu) -{ - g_assert(cpu->cc->has_work); - return cpu->cc->has_work(cpu); -} +bool cpu_has_work(CPUState *cpu); #endif /* CONFIG_USER_ONLY */ |