aboutsummaryrefslogtreecommitdiff
path: root/include/exec
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2022-03-23 19:57:33 +0400
committerPaolo Bonzini <pbonzini@redhat.com>2022-04-06 14:31:43 +0200
commit1f269c1484c4d381d61a7d9b97f289a94e0d43cb (patch)
treeaf1f93d82f9d0376bc3ef5d581954dc62514c9d3 /include/exec
parent415b732751daeccfff681898a716180ceb34dc4e (diff)
downloadqemu-1f269c1484c4d381d61a7d9b97f289a94e0d43cb.zip
qemu-1f269c1484c4d381d61a7d9b97f289a94e0d43cb.tar.gz
qemu-1f269c1484c4d381d61a7d9b97f289a94e0d43cb.tar.bz2
include: move cpu_exec* declarations to cpu-common.h
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220323155743.1585078-23-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/cpu-common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h
index 5979fc1..5968551 100644
--- a/include/exec/cpu-common.h
+++ b/include/exec/cpu-common.h
@@ -19,6 +19,9 @@ typedef uint64_t vaddr;
#define VADDR_PRIX PRIX64
#define VADDR_MAX UINT64_MAX
+void cpu_exec_init_all(void);
+void cpu_exec_step_atomic(CPUState *cpu);
+
/* Using intptr_t ensures that qemu_*_page_mask is sign-extended even
* when intptr_t is 32-bit and we are aligning a long long.
*/