diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-09-14 20:57:15 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-04 11:03:54 -0700 |
| commit | 5934660fa2aabaf76e650dcd1fccc2b676122137 (patch) | |
| tree | c1c4ad88a5ec87820dfdf7c0ed02247609bec0df /accel/tcg/monitor.c | |
| parent | 4c268d6d03d297b83f2aa0af2de2e867af2389fc (diff) | |
| download | focaccia-qemu-5934660fa2aabaf76e650dcd1fccc2b676122137.tar.gz focaccia-qemu-5934660fa2aabaf76e650dcd1fccc2b676122137.zip | |
accel/tcg: Make monitor.c a target-agnostic unit
Move target-agnostic declarations from "internal-target.h" to a new "internal-common.h" header. monitor.c now don't include target specific headers and can be compiled once in system_ss[]. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20230914185718.76241-10-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/monitor.c')
| -rw-r--r-- | accel/tcg/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/monitor.c b/accel/tcg/monitor.c index 30724fdb98..caf1189e0b 100644 --- a/accel/tcg/monitor.c +++ b/accel/tcg/monitor.c @@ -16,7 +16,7 @@ #include "sysemu/cpu-timers.h" #include "sysemu/tcg.h" #include "tcg/tcg.h" -#include "internal-target.h" +#include "internal-common.h" static void dump_drift_info(GString *buf) |