Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

marquee 长度过长导致崩溃-Android #1524

Closed
haicuan139 opened this issue Oct 27, 2016 · 4 comments
Closed

marquee 长度过长导致崩溃-Android #1524

haicuan139 opened this issue Oct 27, 2016 · 4 comments
Assignees
Labels

Comments

@haicuan139
Copy link

当marquee接收的数组长度很大的时候会崩溃,长度设置为100就会崩溃
复现方法:将marquee-demo中的marquee.list数组长度设置为100,在Android 上面崩溃
原因很可能是由于Repeat创建了过多的View导致的。

@haicuan139
Copy link
Author

E/art (16456): | group="main" sCount=0 dsCount=0 obj=0x74481000 self=0xf4427800
E/art (16456): | sysTid=16456 nice=0 cgrp=default sched=0/0 handle=0xf7027bec
E/art (16456): | state=R schedstat=( 6310224779 1261275592 13363 ) utm=498 stm=133 core=5 HZ=100
E/art (16456): | stack=0xff3f7000-0xff3f9000 stackSize=8MB
E/art (16456): | held mutexes= "mutator lock"(shared held)
E/art (16456): at android.os.MessageQueue.nativePollOnce(Native method)
E/art (16456): at android.os.MessageQueue.next(MessageQueue.java:153)
E/art (16456): at android.os.Looper.loop(Looper.java:164)
E/art (16456): at android.app.ActivityThread.main(ActivityThread.java:5809)
E/art (16456): at java.lang.reflect.Method.invoke!(Native method)
E/art (16456): at java.lang.reflect.Method.invoke(Method.java:372)
E/art (16456): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1113)
E/art (16456): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:879)
F/art (16456): art/runtime/check_jni.cc:81] JNI DETECTED ERROR IN APPLICATION: JNI CallVoidMethodV called with pending exception 'java.lang.IllegalStateException' thrown in
void android.os.MessageQueue.nativePollOnce(long, int):-2
F/art (16456): art/runtime/check_jni.cc:81] in call to CallVoidMethodV
F/art (16456): art/runtime/check_jni.cc:81] from void android.os.MessageQueue.nativePollOnce(long, int)
F/art (16456): art/runtime/check_jni.cc:81] "main" prio=5 tid=1 Runnable
F/art (16456): art/runtime/check_jni.cc:81] | group="main" sCount=0 dsCount=0 obj=0x74481000 self=0xf4427800
F/art (16456): art/runtime/check_jni.cc:81] | sysTid=16456 nice=0 cgrp=default sched=0/0 handle=0xf7027bec
F/art (16456): art/runtime/check_jni.cc:81] | state=R schedstat=( 6310224779 1261275592 13363 ) utm=498 stm=133 core=5 HZ=100
F/art (16456): art/runtime/check_jni.cc:81] | stack=0xff3f7000-0xff3f9000 stackSize=8MB
F/art (16456): art/runtime/check_jni.cc:81] | held mutexes= "mutator lock"(shared held)
F/art (16456): art/runtime/check_jni.cc:81] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/check_jni.cc:81] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/check_jni.cc:81] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/check_jni.cc:81] at android.app.ActivityThread.main(ActivityThread.java:5809)
F/art (16456): art/runtime/check_jni.cc:81] at java.lang.reflect.Method.invoke!(Native method)
F/art (16456): art/runtime/check_jni.cc:81] at java.lang.reflect.Method.invoke(Method.java:372)
F/art (16456): art/runtime/check_jni.cc:81] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1113)
F/art (16456): art/runtime/check_jni.cc:81] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:879)
F/art (16456): art/runtime/check_jni.cc:81]
F/art (16456): art/runtime/runtime.cc:307] Runtime aborting...
F/art (16456): art/runtime/runtime.cc:307] Aborting thread:
F/art (16456): art/runtime/runtime.cc:307] "main" prio=5 tid=1 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x74481000 self=0xf4427800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16456 nice=0 cgrp=default sched=0/0 handle=0xf7027bec
F/art (16456): art/runtime/runtime.cc:307] | state=R schedstat=( 6323146472 1262926284 13367 ) utm=499 stm=133 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xff3f7000-0xff3f9000 stackSize=8MB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes= "abort lock" "mutator lock"(shared held)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.app.ActivityThread.main(ActivityThread.java:5809)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.reflect.Method.invoke!(Native method)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.reflect.Method.invoke(Method.java:372)
F/art (16456): art/runtime/runtime.cc:307] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1113)
F/art (16456): art/runtime/runtime.cc:307] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:879)
F/art (16456): art/runtime/runtime.cc:307] Pending exception java.lang.IllegalStateException thrown by 'void android.os.MessageQueue.nativePollOnce(long, int):-2'
F/art (16456): art/runtime/runtime.cc:307] java.lang.IllegalStateException: Unable to create layer for WXFrameLayout @1f891aa7
F/art (16456): art/runtime/runtime.cc:307] at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at void android.os.Looper.loop() (Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:5809)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object java.lang.reflect.Method.invoke!(java.lang.Object, java.lang.Object[], boolean) (Method.java:-2)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:372)
F/art (16456): art/runtime/runtime.cc:307] at void com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run() (ZygoteInit.java:1113)
F/art (16456): art/runtime/runtime.cc:307] at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:879)
F/art (16456): art/runtime/runtime.cc:307] Dumping all threads without appropriate locks held: thread list lock mutator lock
F/art (16456): art/runtime/runtime.cc:307] All threads:
F/art (16456): art/runtime/runtime.cc:307] DALVIK THREADS (46):
F/art (16456): art/runtime/runtime.cc:307] "main" prio=5 tid=1 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x74481000 self=0xf4427800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16456 nice=0 cgrp=default sched=0/0 handle=0xf7027bec
F/art (16456): art/runtime/runtime.cc:307] | state=R schedstat=( 6324936472 1263613360 13368 ) utm=499 stm=133 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xff3f7000-0xff3f9000 stackSize=8MB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes= "abort lock"
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.app.ActivityThread.main(ActivityThread.java:5809)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.reflect.Method.invoke!(Native method)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.reflect.Method.invoke(Method.java:372)
F/art (16456): art/runtime/runtime.cc:307] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1113)
F/art (16456): art/runtime/runtime.cc:307] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:879)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xee0a1c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16462 nice=0 cgrp=default sched=0/0 handle=0xf4c75000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 37462619 32605843 259 ) utm=2 stm=1 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3c1e000-0xf3c20000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 2" prio=5 tid=3 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf4427c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16464 nice=0 cgrp=default sched=0/0 handle=0xf4c73000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 36492382 34089543 265 ) utm=2 stm=1 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3a1e000-0xf3a20000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 3" prio=5 tid=4 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xee0a2c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16465 nice=0 cgrp=default sched=0/0 handle=0xf4c33000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 37978999 39776466 284 ) utm=3 stm=0 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf391e000-0xf3920000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 4" prio=5 tid=5 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf442a400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16466 nice=0 cgrp=default sched=0/0 handle=0xf4c32000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 39315009 30475766 270 ) utm=3 stm=0 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf381e000-0xf3820000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 5" prio=5 tid=6 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xee0a3c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16467 nice=0 cgrp=default sched=0/0 handle=0xf4c31000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 42685453 29523462 263 ) utm=2 stm=2 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf371e000-0xf3720000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 6" prio=5 tid=7 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xf4434000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16468 nice=0 cgrp=default sched=0/0 handle=0xf4c30000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 42228162 32599610 268 ) utm=4 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf361e000-0xf3620000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Heap thread pool worker thread 1" prio=5 tid=8 Native (still starting up)
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x0 self=0xee0a4c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16463 nice=0 cgrp=default sched=0/0 handle=0xf4c74000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 39289769 32306621 257 ) utm=3 stm=0 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3b1e000-0xf3b20000 stackSize=1020KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Signal Catcher" prio=5 tid=9 WaitingInMainSignalCatcherLoop
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d0a0 self=0xf4435000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16469 nice=0 cgrp=default sched=0/0 handle=0xf4c0c000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1317692 7791615 11 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3520000-0xf3522000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_sigtimedwait+0x164/0x208
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_rt_sigtimedwait+0x80/0xe8
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "JDWP" prio=5 tid=10 WaitingInMainDebuggerLoop
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c230a0 self=0xee0a5c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16471 nice=0 cgrp=default sched=0/0 handle=0xf4c07000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 459097227 44874845 411 ) utm=41 stm=4 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3422000-0xf3424000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: poll_schedule_timeout+0x50/0xc0
F/art (16456): art/runtime/runtime.cc:307] kernel: do_select+0x3e0/0x510
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_core_sys_select+0x188/0x214
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_sys_pselect6+0x23c/0x260
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "FinalizerDaemon" prio=5 tid=11 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c251c0 self=0xf4428800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16473 nice=0 cgrp=default sched=0/0 handle=0xf4c01000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 74665767 22503076 414 ) utm=7 stm=0 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf321a000-0xf321c000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x3c065361> (a java.lang.ref.ReferenceQueue)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait(Object.java:422)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x3c065361> (a java.lang.ref.ReferenceQueue)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:180)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "FinalizerWatchdogDaemon" prio=5 tid=12 Sleeping
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c25220 self=0xf4436000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16474 nice=0 cgrp=default sched=0/0 handle=0xf4c00000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 810613 9982080 10 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3116000-0xf3118000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.sleep!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - sleeping on <0x1a1f3e86> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.sleep(Thread.java:1031)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x1a1f3e86> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.sleep(Thread.java:985)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:269)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:300)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:223)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "HeapTrimmerDaemon" prio=5 tid=13 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c25280 self=0xf4436400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16475 nice=0 cgrp=default sched=0/0 handle=0xf4303000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 9029004 9971769 44 ) utm=0 stm=0 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf3012000-0xf3014000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x05fea347> (a java.lang.Daemons$HeapTrimmerDaemon)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$HeapTrimmerDaemon.run(Daemons.java:342)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x05fea347> (a java.lang.Daemons$HeapTrimmerDaemon)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "ReferenceQueueDaemon" prio=5 tid=14 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c25160 self=0xf4428400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16472 nice=0 cgrp=default sched=0/0 handle=0xf4c02000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 36776456 25494614 555 ) utm=1 stm=2 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf331e000-0xf3320000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x33155774> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:140)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x33155774> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "GCDaemon" prio=5 tid=15 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c252e0 self=0xf4436800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16476 nice=0 cgrp=default sched=0/0 handle=0xf4302000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3739492219 613985229 3734 ) utm=307 stm=66 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf2f0e000-0xf2f10000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x1873c49d> (a java.lang.Daemons$GCDaemon)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Daemons$GCDaemon.run(Daemons.java:375)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x1873c49d> (a java.lang.Daemons$GCDaemon)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Binder_1" prio=5 tid=16 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c570a0 self=0xee0a6c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16478 nice=0 cgrp=default sched=0/0 handle=0xf2f0b000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1225799845 274812822 2648 ) utm=47 stm=75 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xf2e0f000-0xf2e11000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_thread_read+0x884/0x118c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl_write_read+0x1a8/0x4cc
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl+0x270/0x694
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_sys_ioctl+0xb0/0x15f0
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Binder_2" prio=5 tid=17 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c9f0a0 self=0xf4567400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16480 nice=0 cgrp=default sched=0/0 handle=0xf2df8000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1144591487 294335397 2639 ) utm=49 stm=65 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xee9f9000-0xee9fb000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_thread_read+0x884/0x118c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl_write_read+0x1a8/0x4cc
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl+0x270/0x694
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_sys_ioctl+0xb0/0x15f0
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "FileObserver" prio=5 tid=18 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c63520 self=0xf4436c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16481 nice=0 cgrp=default sched=0/0 handle=0xee9f2000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 887692 4349923 4 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xee8f0000-0xee8f2000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: inotify_read+0x290/0x48c
F/art (16456): art/runtime/runtime.cc:307] kernel: vfs_read+0x8c/0x17c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_read+0x40/0x90
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.FileObserver$ObserverThread.observe(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.FileObserver$ObserverThread.run(FileObserver.java:85)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "WeexListener-main" prio=5 tid=19 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12d6da60 self=0xf4568400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16486 nice=0 cgrp=default sched=0/0 handle=0xee88c000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3619307 7747462 16 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe0fe2000-0xe0fe4000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: __skb_recv_datagram+0x2a0/0x2d8
F/art (16456): art/runtime/runtime.cc:307] kernel: skb_recv_datagram+0x28/0x34
F/art (16456): art/runtime/runtime.cc:307] kernel: unix_accept+0x78/0x13c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_accept4+0xd0/0x1b0
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.net.LocalSocketImpl.accept(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.net.LocalSocketImpl.accept(LocalSocketImpl.java:331)
F/art (16456): art/runtime/runtime.cc:307] at android.net.LocalServerSocket.accept(LocalServerSocket.java:90)
F/art (16456): art/runtime/runtime.cc:307] at com.taobao.weex.devtools.server.LocalSocketServer.listenOnAddress(LocalSocketServer.java:86)
F/art (16456): art/runtime/runtime.cc:307] at com.taobao.weex.devtools.server.LocalSocketServer.run(LocalSocketServer.java:75)
F/art (16456): art/runtime/runtime.cc:307] at com.taobao.weex.devtools.server.ServerManager$1.run(ServerManager.java:39)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "WeexJSBridgeThread" prio=5 tid=20 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12d9af20 self=0xf4568800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16487 nice=0 cgrp=default sched=0/0 handle=0xee82b000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3911019377 215361153 1149 ) utm=365 stm=26 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe0ede000-0xe0ee0000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.os.HandlerThread.run(HandlerThread.java:61)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "WeeXDomThread" prio=5 tid=21 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12dc0200 self=0xee0a7c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16489 nice=0 cgrp=default sched=0/0 handle=0xee826000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 2184592018 69483218 456 ) utm=218 stm=0 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe0dda000-0xe0ddc000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.os.HandlerThread.run(HandlerThread.java:61)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #1" prio=5 tid=22 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12ebda00 self=0xf4569400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16497 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee7d7000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 4017231 5568463 23 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe03fe000-0xe0400000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x1da0bd12> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x1da0bd12> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #2" prio=5 tid=23 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12ee2e80 self=0xf4569800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16503 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee7d6000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3323003 5215152 21 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe02fa000-0xe02fc000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x24f82ce3> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x24f82ce3> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "RenderThread" prio=5 tid=24 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12f0b0a0 self=0xf456ac00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16504 nice=-4 cgrp=default sched=0/0 handle=0xee45f000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 10033508426 1309740988 18499 ) utm=819 stm=184 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xe01fc000-0xe01fe000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Binder_3" prio=5 tid=25 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12f380a0 self=0xee0a8c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16521 nice=0 cgrp=default sched=0/0 handle=0xecd58000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1068977311 267770830 2512 ) utm=49 stm=57 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdf418000-0xdf41a000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_thread_read+0x884/0x118c
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl_write_read+0x1a8/0x4cc
F/art (16456): art/runtime/runtime.cc:307] kernel: binder_ioctl+0x270/0x694
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_sys_ioctl+0xb0/0x15f0
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "hwuiTask1" prio=5 tid=27 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12fdb100 self=0xee0a9c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16569 nice=-2 cgrp=default sched=0/0 handle=0xecd4e000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 305829164 128309636 747 ) utm=30 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xde47a000-0xde47c000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "hwuiTask2" prio=5 tid=28 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12fde0a0 self=0xf456bc00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16570 nice=0 cgrp=default sched=0/0 handle=0xe087d000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 16200923 21510695 107 ) utm=1 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xde37c000-0xde37e000 stackSize=1012KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] (no managed stack frames)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #3" prio=5 tid=29 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12fd47c0 self=0xf456cc00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16589 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xe071b000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3494998 4951848 29 ) utm=0 stm=0 core=3 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd4de000-0xdd4e0000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x35ea76e0> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x35ea76e0> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #4" prio=5 tid=30 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d100 self=0xf456d000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16636 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee8e9000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3442384 11675461 26 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdda8e000-0xdda90000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x364d0d99> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x364d0d99> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #5" prio=5 tid=31 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d160 self=0xf456d400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16689 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee504000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3649771 1807922 19 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd98a000-0xdd98c000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x3649985e> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x3649985e> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #6" prio=5 tid=32 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c250a0 self=0xf456d800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16742 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee4fb000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 4339614 7267001 42 ) utm=0 stm=0 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd6c2000-0xdd6c4000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x0076b43f> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x0076b43f> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #7" prio=5 tid=33 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d1c0 self=0xf456e400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16792 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee508000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3921383 4024845 24 ) utm=0 stm=0 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd886000-0xdd888000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x0530210c> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x0530210c> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #8" prio=5 tid=34 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d220 self=0xf456e800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16841 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee7ef000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3908075 2526770 21 ) utm=0 stm=0 core=3 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd3da000-0xdd3dc000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x3ad7ea55> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x3ad7ea55> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "AsyncTask #9" prio=5 tid=35 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c0d280 self=0xf456ec00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=16889 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee7ec000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 3172773 1939460 20 ) utm=0 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd2d6000-0xdd2d8000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x2a12dc6a> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x2a12dc6a> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:410)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "dispatcherThread" prio=5 tid=26 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12df53c0 self=0xf4568000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=18931 nice=0 cgrp=default sched=0/0 handle=0xee50f000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 55024613 29981695 142 ) utm=5 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdee03000-0xdee05000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
E/NotificationService( 902): Suppressing notification from package com.qihoo360.mobilesafe by user request.
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
E/NotificationService( 902): Suppressing notification from package com.qihoo360.mobilesafe by user request, and Notification.FLAG = 98, and when = 1477564454072
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.os.HandlerThread.run(HandlerThread.java:61)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "OkHttp Dispatcher" prio=5 tid=36 TimedWaiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12eae1c0 self=0xf456f800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=18933 nice=0 cgrp=default sched=0/0 handle=0xee467000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 21019464 2389846 17 ) utm=2 stm=0 core=0 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd18c000-0xdd18e000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x0d2c555b> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x0d2c555b> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:197)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:429)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:331)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.SynchronousQueue.poll(SynchronousQueue.java:910)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "OkHttp WebSocket reader http://192.168.7.70:8082" prio=5 tid=37 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12ebdb80 self=0xee0a7000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=18939 nice=0 cgrp=default sched=0/0 handle=0xecd19000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1856924 210539 6 ) utm=0 stm=0 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdc1de000-0xdc1e0000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: sk_wait_data+0xcc/0xd8
F/art (16456): art/runtime/runtime.cc:307] kernel: tcp_recvmsg+0x450/0x938
F/art (16456): art/runtime/runtime.cc:307] kernel: inet_recvmsg+0xa0/0xc0
F/art (16456): art/runtime/runtime.cc:307] kernel: sock_recvmsg+0xcc/0xf4
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_recvfrom+0xa4/0xfc
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_sys_recvfrom+0xc/0x18
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at libcore.io.Posix.recvfromBytes(Native method)
F/art (16456): art/runtime/runtime.cc:307] at libcore.io.Posix.recvfrom(Posix.java:185)
F/art (16456): art/runtime/runtime.cc:307] at libcore.io.BlockGuardOs.recvfrom(BlockGuardOs.java:250)
F/art (16456): art/runtime/runtime.cc:307] at libcore.io.IoBridge.recvfrom(IoBridge.java:593)
F/art (16456): art/runtime/runtime.cc:307] at java.net.PlainSocketImpl.read(PlainSocketImpl.java:492)
F/art (16456): art/runtime/runtime.cc:307] at java.net.PlainSocketImpl.access$000(PlainSocketImpl.java:42)
F/art (16456): art/runtime/runtime.cc:307] at java.net.PlainSocketImpl$PlainSocketInputStream.read(PlainSocketImpl.java:242)
F/art (16456): art/runtime/runtime.cc:307] at okio.Okio$2.read(Okio.java:137)
F/art (16456): art/runtime/runtime.cc:307] at okio.AsyncTimeout$2.read(AsyncTimeout.java:211)
F/art (16456): art/runtime/runtime.cc:307] at okio.RealBufferedSource.request(RealBufferedSource.java:71)
F/art (16456): art/runtime/runtime.cc:307] at okio.RealBufferedSource.require(RealBufferedSource.java:64)
F/art (16456): art/runtime/runtime.cc:307] at okio.RealBufferedSource.readByte(RealBufferedSource.java:77)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.internal.ws.WebSocketReader.readHeader(WebSocketReader.java:108)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.internal.ws.WebSocketReader.processNextFrame(WebSocketReader.java:97)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.internal.ws.RealWebSocket.readMessage(RealWebSocket.java:87)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.ws.WebSocketCall$2.execute(WebSocketCall.java:187)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.internal.NamedRunnable.run(NamedRunnable.java:33)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Okio Watchdog" prio=5 tid=38 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12e967c0 self=0xee0aa000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=18993 nice=0 cgrp=default sched=0/0 handle=0xee7eb000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 5603155 10443233 128 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xde97b000-0xde97d000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x3d4441f8> (a java.lang.Class<okio.AsyncTimeout>)
F/art (16456): art/runtime/runtime.cc:307] at okio.AsyncTimeout.awaitTimeout(AsyncTimeout.java:297)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x3d4441f8> (a java.lang.Class<okio.AsyncTimeout>)
F/art (16456): art/runtime/runtime.cc:307] at okio.AsyncTimeout.access$000(AsyncTimeout.java:40)
F/art (16456): art/runtime/runtime.cc:307] at okio.AsyncTimeout$Watchdog.run(AsyncTimeout.java:272)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "OkHttp ConnectionPool" prio=5 tid=39 TimedWaiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12e96be0 self=0xee0ab400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=18999 nice=0 cgrp=default sched=0/0 handle=0xee505000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1184153 1432770 3 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xde877000-0xde879000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x1ff9d6d1> (a com.squareup.okhttp.ConnectionPool)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.ConnectionPool.performCleanup(ConnectionPool.java:305)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x1ff9d6d1> (a com.squareup.okhttp.ConnectionPool)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.ConnectionPool.runCleanupUntilPoolIsEmpty(ConnectionPool.java:242)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.ConnectionPool.access$000(ConnectionPool.java:54)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.okhttp.ConnectionPool$1.run(ConnectionPool.java:97)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Stats" prio=5 tid=40 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12dee900 self=0xf4571400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19015 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee8ed000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 4348844 19705154 40 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xddcfe000-0xddd00000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.os.HandlerThread.run(HandlerThread.java:61)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Dispatcher" prio=5 tid=41 Native
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12deecf0 self=0xf4571800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19016 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee8ea000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 7921002 13707460 43 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xddbfa000-0xddbfc000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: SyS_epoll_wait+0x384/0x494
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_epoll_pwait+0x120/0x12c
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.nativePollOnce(Native method)
F/art (16456): art/runtime/runtime.cc:307] at android.os.MessageQueue.next(MessageQueue.java:153)
F/art (16456): art/runtime/runtime.cc:307] at android.os.Looper.loop(Looper.java:164)
F/art (16456): art/runtime/runtime.cc:307] at android.os.HandlerThread.run(HandlerThread.java:61)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-refQueue" prio=5 tid=42 TimedWaiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12c9fbe0 self=0xf4571c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19017 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee52f000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 1640922 818076 12 ) utm=0 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdd088000-0xdd08a000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x337a5536> (a java.lang.ref.ReferenceQueue)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:113)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x337a5536> (a java.lang.ref.ReferenceQueue)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.picasso.Picasso$CleanupThread.run(Picasso.java:613)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Idle" prio=5 tid=43 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12d6d7c0 self=0xf4572c00
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19021 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee528000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 36122618 30022843 98 ) utm=3 stm=0 core=5 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdc0da000-0xdc0dc000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x0ed0ec37> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x0ed0ec37> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:510)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.picasso.Utils$PicassoThread.run(Utils.java:411)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Idle" prio=5 tid=44 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12d6d6a0 self=0xf4572800
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19020 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee529000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 40554304 13677312 63 ) utm=4 stm=0 core=2 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdce80000-0xdce82000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x207785a4> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x207785a4> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:510)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.picasso.Utils$PicassoThread.run(Utils.java:411)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Idle" prio=5 tid=45 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x12d6d5e0 self=0xf4572400
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19019 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee52a000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 36830926 25003150 100 ) utm=3 stm=0 core=4 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xdcf84000-0xdcf86000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x3e740f0d> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x3e740f0d> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:510)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.picasso.Utils$PicassoThread.run(Utils.java:411)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307] "Picasso-Idle" prio=5 tid=46 Waiting
F/art (16456): art/runtime/runtime.cc:307] | group="" sCount=0 dsCount=0 obj=0x14b34100 self=0xf4573000
F/art (16456): art/runtime/runtime.cc:307] | sysTid=19135 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xee53e000
F/art (16456): art/runtime/runtime.cc:307] | state=S schedstat=( 20400768 17422846 25 ) utm=2 stm=0 core=1 HZ=100
F/art (16456): art/runtime/runtime.cc:307] | stack=0xde773000-0xde775000 stackSize=1036KB
F/art (16456): art/runtime/runtime.cc:307] | held mutexes=
F/art (16456): art/runtime/runtime.cc:307] kernel: __switch_to+0x74/0x8c
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait_queue_me+0xcc/0x158
F/art (16456): art/runtime/runtime.cc:307] kernel: futex_wait+0x13c/0x23c
F/art (16456): art/runtime/runtime.cc:307] kernel: do_futex+0x184/0xa48
F/art (16456): art/runtime/runtime.cc:307] kernel: compat_SyS_futex+0x7c/0x168
F/art (16456): art/runtime/runtime.cc:307] kernel: cpu_switch_to+0x48/0x4c
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Object.wait!(Native method)
F/art (16456): art/runtime/runtime.cc:307] - waiting on <0x250e8ec2> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.parkFor(Thread.java:1220)
F/art (16456): art/runtime/runtime.cc:307] - locked <0x250e8ec2> (a java.lang.Object)
F/art (16456): art/runtime/runtime.cc:307] at sun.misc.Unsafe.park(Unsafe.java:299)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:157)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2016)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:510)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1035)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1097)
F/art (16456): art/runtime/runtime.cc:307] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
F/art (16456): art/runtime/runtime.cc:307] at java.lang.Thread.run(Thread.java:818)
F/art (16456): art/runtime/runtime.cc:307] at com.squareup.picasso.Utils$PicassoThread.run(Utils.java:411)
F/art (16456): art/runtime/runtime.cc:307]
F/art (16456): art/runtime/runtime.cc:307]
F/libc (16456): Fatal signal 6 (SIGABRT), code -6 in tid 16456 (om.alibaba.weex)
E/AEE/AED (19158): request.action: 0
E/resmon (28908): [6052: StackTraceElement.onUEvent] trigger=> type=3 value=459
E/resmon (28908): [6051: StackTraceElement.run] Out of my control(cpu=54% availmem=455mb), I will sleep longer
E/Process (19206): android_os_Process_getProcessNameByPid pid is 19206
E/Process (19206): android_os_Process_getProcessNameByPid value is om.alibaba.weex
E/DrmMtkUtil/DrmUtil( 352): checkDcf: not dcf type, dcf version value [80]
E/Cta5File( 352): Cta5File::isCta5NormalFile false, bad magic:PK
E/Cta5File( 352): Cta5File::isCta5MultimediaFile false, bad magic:
E/DrmMtkUtil/DrmUtil( 352): checkDcf: not dcf type, dcf version value [80]
E/Cta5File( 352): Cta5File::isCta5NormalFile false, bad magic:PK
E/Cta5File( 352): Cta5File::isCta5MultimediaFile false, bad magic:
E/DrmMtkUtil/DrmUtil( 352): checkDcf: not dcf type, dcf version value [80]
E/DrmMtkUtil/DrmUtil( 351): parseDcf: not dcf type, dcf version value [80]
E/DrmMtkPlugIn( 351): onOpenDecryptSession() : failed to parse dcf file.
E/APEExtractor( 352): getAPEInfo not ape 5001
E/AsfParser( 352): unknown object: 5367674f-200-0-000000000000df34, 11587 bytes
E/AsfParser( 352): error parsing header: -6
E/DrmMtkUtil/DrmUtil( 351): parseDcf: not dcf type, dcf version value [80]
E/DrmMtkPlugIn( 351): onOpenDecryptSession() : failed to parse dcf file.
E/APEExtractor( 352): getAPEInfo not ape 5001
E/AsfParser( 352): unknown object: 5367674f-200-0-000000000000df34, 11587 bytes
E/AsfParser( 352): error parsing header: -6
E/MediaPlayer(19206): Should have subtitle controller already set
E/MediaPlayer(19206): Should have subtitle controller already set
E/GED (19206): Failed to get GED Log Buf, err(0)
E/CheckPermission(19206): camera-code= 1
E/CheckPermission(19206): camera-code= 2
E/CheckPermission(19206): camera-code= 3
E/DrmMtkUtil/DrmUtil( 352): checkDcf: not dcf type, dcf version value [79]
E/Cta5File( 352): Cta5File::isCta5NormalFile false, bad magic:OggS
E/Cta5File( 352): Cta5File::isCta5MultimediaFile false, bad magic:�ԗ
E/aaa_sensor_mgr( 352): [getSensorName()] Err: 978:, No Sensor object error
E/DrmMtkUtil/DrmUtil( 351): parseDcf: not dcf type, dcf version value [79]
E/DrmMtkPlugIn( 351): onOpenDecryptSession() : failed to parse dcf file.
E/APEExtractor( 352): getAPEInfo not ape 5002
E/AsfParser( 352): unknown object: 5367674f-200-0-0000000000002600, 0 bytes
E/AsfParser( 352): error parsing header: -6
E/DrmMtkUtil/DrmUtil( 352): checkDcf: not dcf type, dcf version value [79]
E/Cta5File( 352): Cta5File::isCta5NormalFile false, bad magic:OggS
E/Cta5File( 352): Cta5File::isCta5MultimediaFile false, bad magic:
E/CameraClient( 352): getParameters: com.alibaba.weex
E/CameraClient( 352): getParameters: supportSize=176x144,320x240,352x288,480x320,480x368,640x480,720x480,864x480,960x540,1088x1088,1280x720,1280x960,1440x1080,1920x1080,1920x1
088
E/DrmMtkUtil/DrmUtil( 351): parseDcf: not dcf type, dcf version value [79]
E/DrmMtkPlugIn( 351): onOpenDecryptSession() : failed to parse dcf file.
E/CameraClient( 352): getParameters: com.alibaba.weex
E/CameraClient( 352): getParameters: supportSize=176x144,320x240,352x288,480x320,480x368,640x480,720x480,864x480,960x540,1088x1088,1280x720,1280x960,1440x1080,1920x1080,1920x1
088
E/APEExtractor( 352): getAPEInfo not ape 5004
E/AsfParser( 352): unknown object: 5367674f-200-0-0000000000002600, 0 bytes
E/AsfParser( 352): error parsing header: -6
E/CameraClient( 352): getParameters: com.alibaba.weex
E/CameraClient( 352): getParameters: supportSize=176x144,320x240,352x288,480x320,480x368,640x480,720x480,864x480,960x540,1088x1088,1280x720,1280x960,1440x1080,1920x1080,1920x1
088
E/CameraClient( 352): getParameters: com.alibaba.weex
E/CameraClient( 352): getParameters: supportSize=176x144,320x240,352x288,480x320,480x368,640x480,720x480,864x480,960x540,1280x720,1280x960,1440x1080,1920x1080,1920x1088
E/aaa_sensor_mgr( 352): [setLongExpState()] Err: 377:, No Sensor object error
E/aaa_sensor_mgr( 352): [setLongExpState()] Err: 377:, No Sensor object error
E/MtkCam/ISC( 352): [setPass1InitRrzoSize] size is 0 (setPass1InitRrzoSize){#824:vendor/mediatek/proprietary/platform/mt6755/hardware/mtkcam/core/camnode/IspSyncControl.cpp}
E/ImgSensorDrv( 352): [sendCommand]Err( 2212):[sendCommand] Err-ctrlCode (Success)
E/MtkCam/HalSensor( 352): [configure] CMD_SENSOR_GET_SENSOR_ROLLING_SHUTTER(15358)(2171) (configure){#1287:vendor/mediatek/proprietary/platform/mt6755/hardware/mtkcam/hal/sens
or/HalSensor.control.cpp}
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): new setDelay handle(0),ns(10000000)m, error(0), index(2)
E/Accel ( 902): ACC batch: handle:0, en:0,samplingPeriodNs:10000000 maxBatchReportLatencyNs:0
E/Sensors ( 902): sensor 0 go to common batch
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): go to batchsensor
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): new setDelay handle(0),ns(10000000)m, error(0), index(2)
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): go to batchsensor
E/Sensors ( 902): handleToDriver handle(0)
E/Sensors ( 902): new setDelay handle(0),ns(10000000)m, error(0), index(2)
E/aaa_sensor_buf_mgr( 352): [updateDMABaseAddr()] Err: 860:, u4BaseAddr is NULL
E/aaa_sensor_buf_mgr( 352): [updateDMABaseAddr()] Err: 860:, u4BaseAddr is NULL
E/CameraClient( 352): getParameters: com.alibaba.weex
E/CameraClient( 352): getParameters: supportSize=176x144,320x240,352x288,480x320,480x368,640x480,720x480,864x480,960x540,1280x720,1280x960,1440x1080,1920x1080,1920x1088
E/NotificationService( 902): Suppressing notification from package com.qihoo360.mobilesafe by user request.
E/NotificationService( 902): Suppressing notification from package com.qihoo360.mobilesafe by user request, and Notification.FLAG = 98, and when = 1477564459078

@zshshr zshshr self-assigned this Nov 21, 2016
@zshshr
Copy link
Contributor

zshshr commented Nov 23, 2016

@haicuan139 麻烦提供一个we文件的源码文件和weex 的版本号

@haicuan139
Copy link
Author

@zshshr 这个版本已经不能复现了!

@Jinjiang
Copy link
Contributor

如果新版本已经不能复现,这里先关掉了
将来再发现类似的问题,有劳提供复现的代码和版本号,然后我们再重启讨论
谢谢理解

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants