diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-03-29 19:23:48 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-03-29 19:23:48 +0000 |
commit | d2053c3cca0b5c78317a183e19d2933ed23c6fc2 (patch) | |
tree | cdf962c03649018051d3a688bf7ec4ea5665222a /qemu-common.h | |
parent | 1c14f162dd92c0448948791531dc82ac277330ae (diff) | |
download | qemu-d2053c3cca0b5c78317a183e19d2933ed23c6fc2.tar.gz qemu-d2053c3cca0b5c78317a183e19d2933ed23c6fc2.tar.bz2 qemu-d2053c3cca0b5c78317a183e19d2933ed23c6fc2.zip |
Move cpu_exec_init_all() declaration to qemu-common.h
Let cpu_exec_init_all() be called from non-CPU code.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h index 087c03472a..d881a3999b 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -231,6 +231,8 @@ typedef struct SSIBus SSIBus; typedef uint64_t pcibus_t; +void cpu_exec_init_all(unsigned long tb_size); + /* CPU save/load. */ void cpu_save(QEMUFile *f, void *opaque); int cpu_load(QEMUFile *f, void *opaque, int version_id); |