exec/cpu-common.h: Include missing 'qemu/thread.h' header

Unfortunately we need to include "qemu/thread.h" -- which is
currently indirectly pulled in -- to get the QemuMutex type
definition:

  extern QemuMutex qemu_cpu_list_lock;

Signed-off-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20260617160426.64461-3-philmd@oss.qualcomm.com>
This commit is contained in:
Philippe Mathieu-Daudé
2026-06-17 13:10:22 +02:00
parent 7d9f051410
commit 60cfd6da28

View File

@@ -8,6 +8,7 @@
#ifndef CPU_COMMON_H
#define CPU_COMMON_H
#include "qemu/thread.h"
#include "exec/vaddr.h"
#include "hw/core/cpu.h"
#include "tcg/debug-assert.h"