diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2024-06-20 16:22:10 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2024-06-24 10:14:17 +0100 |
| commit | 5b7d54d4ed7857b8b27fb040c6027ba59e003889 (patch) | |
| tree | eef845c7178f84a97a3a3cb8589d158c715da58d /target/i386/kvm/kvm.c | |
| parent | b31bf9f8f72477742615888e78ab07845574e19c (diff) | |
| download | focaccia-qemu-5b7d54d4ed7857b8b27fb040c6027ba59e003889.tar.gz focaccia-qemu-5b7d54d4ed7857b8b27fb040c6027ba59e003889.zip | |
gdbstub: move enums into separate header
This is an experiment to further reduce the amount we throw into the exec headers. It might not be as useful as I initially thought because just under half of the users also need gdbserver_start(). Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240620152220.2192768-3-alex.bennee@linaro.org>
Diffstat (limited to 'target/i386/kvm/kvm.c')
| -rw-r--r-- | target/i386/kvm/kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c index 7ad8072748..dd8b0f3313 100644 --- a/target/i386/kvm/kvm.c +++ b/target/i386/kvm/kvm.c @@ -38,7 +38,7 @@ #include "hyperv.h" #include "hyperv-proto.h" -#include "exec/gdbstub.h" +#include "gdbstub/enums.h" #include "qemu/host-utils.h" #include "qemu/main-loop.h" #include "qemu/ratelimit.h" |