summaryrefslogtreecommitdiff
path: root/linux-user/main.c
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2013-05-17 18:26:54 +0200
committerAndreas Färber <afaerber@suse.de>2013-06-28 13:25:12 +0200
commit60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094 (patch)
tree1b543cad3d08d8f79df37b72554bd01dcce5ebe1 /linux-user/main.c
parentcb446ecab714b2444a270be209e0533bcd2ee534 (diff)
downloadqemu-60a3e17a469e444a7bc4d9a14c2ecf3bdb5ec094.tar.gz
cpu: Change cpu_exit() argument to CPUState
It no longer depends on CPUArchState, so move it to qom/cpu.c. Prepares for changing GDBState::c_cpu to CPUState. Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'linux-user/main.c')
-rw-r--r--linux-user/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c
index 21725a4971..f67a62b188 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -160,7 +160,7 @@ static inline void start_exclusive(void)
other_cpu = ENV_GET_CPU(other);
if (other_cpu->running) {
pending_cpus++;
- cpu_exit(other);
+ cpu_exit(other_cpu);
}
}
if (pending_cpus > 1) {