diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-14 10:39:19 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 14:08:36 -0700 |
| commit | 3e57baa22ea6892d1b8c212253b2859be30f45ee (patch) | |
| tree | ac1d320d4561beec30a9687a21738d7a0f15b249 /target/i386/machine.c | |
| parent | 17a71e89693e17d60f73a00b4cea6963073152e3 (diff) | |
| download | focaccia-qemu-3e57baa22ea6892d1b8c212253b2859be30f45ee.tar.gz focaccia-qemu-3e57baa22ea6892d1b8c212253b2859be30f45ee.zip | |
include/exec: Split out watchpoint.h
Relatively few objects in qemu care about watchpoints, so split out to a new header. Removes an instance of CONFIG_USER_ONLY from hw/core/cpu.h. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/i386/machine.c')
| -rw-r--r-- | target/i386/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/machine.c b/target/i386/machine.c index 70f632a36f..6cb561c632 100644 --- a/target/i386/machine.c +++ b/target/i386/machine.c @@ -7,7 +7,7 @@ #include "hw/i386/x86.h" #include "kvm/kvm_i386.h" #include "hw/xen/xen.h" - +#include "exec/watchpoint.h" #include "system/kvm.h" #include "system/kvm_xen.h" #include "system/tcg.h" |