diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2022-12-19 18:09:43 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-27 22:29:01 +0100 |
commit | 5b5968c47774c3eca51c6d3db80b9479b015f9bd (patch) | |
tree | 5a16b3cec15956eaea08c4c768e47c0ff7fa83dc /hw | |
parent | 5db2dac46220df5143dfe17dfa3d97957f710360 (diff) | |
download | qemu-5b5968c47774c3eca51c6d3db80b9479b015f9bd.zip qemu-5b5968c47774c3eca51c6d3db80b9479b015f9bd.tar.gz qemu-5b5968c47774c3eca51c6d3db80b9479b015f9bd.tar.bz2 |
replay: Extract core API to 'exec/replay-core.h'
replay API is used deeply within TCG common code (common to user
and system emulation). Unfortunately "sysemu/replay.h" requires
some QAPI headers for few system-specific declarations, example:
void replay_input_event(QemuConsole *src, InputEvent *evt);
Since commit c2651c0eaa ("qapi/meson: Restrict UI module to system
emulation and tools") the QAPI header defining the InputEvent is
not generated anymore.
To keep it simple, extract the 'core' replay prototypes to a new
"exec/replay-core.h" header which we include in the TCG code that
doesn't need the rest of the replay API.
Reviewed-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
Message-Id: <20221219170806.60580-5-philmd@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/core/ptimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/core/ptimer.c b/hw/core/ptimer.c index eb5ba1a..e03165f 100644 --- a/hw/core/ptimer.c +++ b/hw/core/ptimer.c @@ -10,7 +10,7 @@ #include "hw/ptimer.h" #include "migration/vmstate.h" #include "qemu/host-utils.h" -#include "sysemu/replay.h" +#include "exec/replay-core.h" #include "sysemu/cpu-timers.h" #include "sysemu/qtest.h" #include "block/aio.h" |