diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-28 17:14:10 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-28 17:14:10 +0000 |
commit | cc656a9cfab3de3599a1b0cb3be3880b30784ff4 (patch) | |
tree | 4f39afe8e12ef9743d4bb9ba11f80c4358b76bf4 /cpu-defs.h | |
parent | 01a2f994da42da3f20cb4c31c0ff09a8828110fd (diff) | |
download | qemu-cc656a9cfab3de3599a1b0cb3be3880b30784ff4.tar.gz qemu-cc656a9cfab3de3599a1b0cb3be3880b30784ff4.tar.bz2 qemu-cc656a9cfab3de3599a1b0cb3be3880b30784ff4.zip |
moved halted field to CPU_COMMON
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4609 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-defs.h')
-rw-r--r-- | cpu-defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu-defs.h b/cpu-defs.h index c4389ed35d..7001ca4b25 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -140,6 +140,7 @@ typedef struct CPUTLBEntry { written */ \ target_ulong mem_write_vaddr; /* target virtual addr at which the \ memory was written */ \ + int halted; /* TRUE if the CPU is in suspend state */ \ /* The meaning of the MMU modes is defined in the target code. */ \ CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE]; \ struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \ |