diff options
| author | Edgar E. Iglesias | 2013-12-17 04:06:51 +0100 |
|---|---|---|
| committer | Edgar E. Iglesias | 2014-02-11 13:56:37 +0100 |
| commit | 09daed848c3de60b7979eda709dc4bae5195273d (patch) | |
| tree | fc1780c50b6f58edbaa3ca77af504cc44fe07c57 /include/qom | |
| parent | memory: Add MemoryListener to typedefs.h (diff) | |
| download | qemu-09daed848c3de60b7979eda709dc4bae5195273d.tar.gz qemu-09daed848c3de60b7979eda709dc4bae5195273d.tar.xz qemu-09daed848c3de60b7979eda709dc4bae5195273d.zip | |
cpu: Add per-cpu address space
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'include/qom')
| -rw-r--r-- | include/qom/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/qom/cpu.h b/include/qom/cpu.h index 7739e00067..367eda17d1 100644 --- a/include/qom/cpu.h +++ b/include/qom/cpu.h @@ -186,6 +186,9 @@ struct CPUState { uint32_t interrupt_request; int singlestep_enabled; + AddressSpace *as; + MemoryListener *tcg_as_listener; + void *env_ptr; /* CPUArchState */ struct TranslationBlock *current_tb; struct GDBRegisterState *gdb_regs; |
