diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2023-03-02 18:57:43 -0800 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2023-03-07 17:06:33 +0000 |
| commit | 548c96095dae2af37c4145ff11f0d010c43e2be2 (patch) | |
| tree | 82f2b64be682868b5dc8af440acc856911b132fe /include/exec/exec-all.h | |
| parent | 9f56787c12e1b5f594ca790b1d84b8cc43a962d3 (diff) | |
| download | focaccia-qemu-548c96095dae2af37c4145ff11f0d010c43e2be2.tar.gz focaccia-qemu-548c96095dae2af37c4145ff11f0d010c43e2be2.zip | |
includes: move tb_flush into its own header
This aids subsystems (like gdbstub) that want to trigger a flush without pulling target specific headers. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230302190846.2593720-8-alex.bennee@linaro.org> Message-Id: <20230303025805.625589-8-richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/exec-all.h')
| -rw-r--r-- | include/exec/exec-all.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index e09254333d..ad9eb6067b 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -677,7 +677,6 @@ void tb_invalidate_phys_addr(target_ulong addr); #else void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr, MemTxAttrs attrs); #endif -void tb_flush(CPUState *cpu); void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr); void tb_invalidate_phys_range(tb_page_addr_t start, tb_page_addr_t end); void tb_set_jmp_target(TranslationBlock *tb, int n, uintptr_t addr); |