summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJongwoo Chae <jongwoo.chae@samsung.com>2015-12-18 11:11:54 +0900
committerYonghee Han <onstudy@samsung.com>2016-07-28 20:42:31 +0900
commitd7d4d6f84b1ca2c99f9ce7ac43d9498b7c63b75f (patch)
tree4fb1d120537356cc11c4f4c2053085ccde7dee17
parentc55f39970a29925e19ea18681fc3756a068c86bc (diff)
downloadqemu2.6.0.tar.gz
qemu2.6.0.tar.bz2
qemu2.6.0.zip
Fixing multi-thread lock with edje_ccqemu2.6.0
Change-Id: I48a2236de35beb5d5f63c1d585aad8629cb9d93b
-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 59c11665e..9042e18e3 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -129,7 +129,7 @@ void fork_end(int child)
Discard information about the parent threads. */
CPU_FOREACH_SAFE(cpu, next_cpu) {
if (cpu != thread_cpu) {
- QTAILQ_REMOVE(&cpus, thread_cpu, node);
+ QTAILQ_REMOVE(&cpus, cpu, node);
}
}
pending_cpus = 0;