diff options
author | Paolo Bonzini | 2020-10-28 13:04:08 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-12-15 18:51:50 +0100 |
commit | c5e3c9182d0cc312196aa5e1de305e9ab5a7cda3 (patch) | |
tree | 2b761f5adf53d6b53e351bf5e83ab182818dfa24 /include | |
parent | vl: extract softmmu/runstate.c (diff) | |
download | qemu-c5e3c9182d0cc312196aa5e1de305e9ab5a7cda3.tar.gz qemu-c5e3c9182d0cc312196aa5e1de305e9ab5a7cda3.tar.xz qemu-c5e3c9182d0cc312196aa5e1de305e9ab5a7cda3.zip |
vl: extract softmmu/globals.c
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/cpu-common.h | 3 | ||||
-rw-r--r-- | include/exec/exec-all.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index bd5e15dd7d..5a0a2d93e0 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -105,4 +105,7 @@ int ram_block_discard_range(RAMBlock *rb, uint64_t start, size_t length); #endif +/* vl.c */ +extern int singlestep; + #endif /* CPU_COMMON_H */ diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 94fe05daaa..fab573da06 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -676,7 +676,4 @@ hwaddr memory_region_section_get_iotlb(CPUState *cpu, MemoryRegionSection *section); #endif -/* vl.c */ -extern int singlestep; - #endif |