diff options
author | Andreas Färber | 2012-05-03 01:22:49 +0200 |
---|---|---|
committer | Andreas Färber | 2012-10-31 01:02:44 +0100 |
commit | f5c121b85832f69fde5ad8939274e04ad21c1bd6 (patch) | |
tree | 8ea713f92cb454577050b20dcbf7ad295987956a /include/qemu/cpu.h | |
parent | cpus: Pass CPUState to cpu_can_run() (diff) | |
download | qemu-f5c121b85832f69fde5ad8939274e04ad21c1bd6.tar.gz qemu-f5c121b85832f69fde5ad8939274e04ad21c1bd6.tar.xz qemu-f5c121b85832f69fde5ad8939274e04ad21c1bd6.zip |
cpu: Move halt_cond to CPUState
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/qemu/cpu.h')
-rw-r--r-- | include/qemu/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index 4e62032463..75e0f8dc68 100644 --- a/include/qemu/cpu.h +++ b/include/qemu/cpu.h @@ -69,6 +69,7 @@ struct CPUState { #ifdef _WIN32 HANDLE hThread; #endif + struct QemuCond *halt_cond; bool thread_kicked; bool created; bool stop; |