diff options
author | Jongwoo Chae <jongwoo.chae@samsung.com> | 2015-12-18 11:11:54 +0900 |
---|---|---|
committer | Jongwoo Chae <jongwoo.chae@samsung.com> | 2015-12-18 11:11:54 +0900 |
commit | c090d6767879a4930da7f98d5bbb85f55ac6feb1 (patch) | |
tree | 2df48bda541edf1f15c8bf1b25f6cb332ac1d1e8 | |
parent | 516648f5019f577b71a9e0abc512866d45043231 (diff) | |
download | qemu-c090d6767879a4930da7f98d5bbb85f55ac6feb1.tar.gz qemu-c090d6767879a4930da7f98d5bbb85f55ac6feb1.tar.bz2 qemu-c090d6767879a4930da7f98d5bbb85f55ac6feb1.zip |
Fixing multi-thread lock with edje_ccsubmit/tizen_common/20151229.154718submit/tizen_common/20151229.144031submit/tizen_base/20151223.111112submit/tizen/20151218.021741accepted/tizen/wearable/20151218.044334accepted/tizen/tv/20151218.044331accepted/tizen/mobile/20151218.044350accepted/tizen/base/20151223.052401accepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobile
Change-Id: I48a2236de35beb5d5f63c1d585aad8629cb9d93b
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 46a43668a..a1366bce8 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -121,7 +121,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; |