Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.31 KB | None | 0 0
  1. executing service com.myapp/.background.MyIntentService
  2. (no location available)
  3.  
  4. public class MyIntentService extends IntentService {
  5.  
  6.  
  7. public MyIntentService() {
  8. super(MyIntentService.class.getName());
  9. }
  10.  
  11. @Override
  12. protected void onHandleIntent(Intent intent) {
  13. SystemClock.sleep(100);
  14.  
  15. Intent intent2 = new Intent(this, HomeActivity.class);
  16. intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK|
  17. Intent.FLAG_ACTIVITY_NO_ANIMATION|
  18. Intent.FLAG_ACTIVITY_NO_HISTORY);
  19. startActivity(intent2);
  20. }
  21. }
  22.  
  23. executing service com.myapp/.background.MyIntentService
  24. (no location available)
  25.  
  26.  
  27. "main" prio=5 tid=1 Waiting
  28. | group="main" sCount=1 dsCount=0 obj=0x74aeda80 self=0xb4827800
  29. | sysTid=17309 nice=-4 cgrp=default sched=0/0 handle=0xb6fb4bec
  30. | state=S schedstat=( 0 0 0 ) utm=164 stm=73 core=3 HZ=100
  31. | stack=0xbe5e4000-0xbe5e6000 stackSize=8MB
  32. | held mutexes=
  33. at java.lang.Object.wait! (Native method)
  34. - waiting on <0x2e30cd13> (a java.lang.Object)
  35. at java.lang.Thread.parkFor (Thread.java:1220)
  36. - locked <0x2e30cd13> (a java.lang.Object)
  37. at sun.misc.Unsafe.park (Unsafe.java:299)
  38. at java.util.concurrent.locks.LockSupport.park (LockSupport.java:157)
  39. at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt (AbstractQueuedSynchronizer.java:813)
  40. at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly (AbstractQueuedSynchronizer.java:973)
  41. at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly (AbstractQueuedSynchronizer.java:1281)
  42. at java.util.concurrent.CountDownLatch.await (CountDownLatch.java:202)
  43. at android.app.SharedPreferencesImpl$EditorImpl$1.run (SharedPreferencesImpl.java:365)
  44. at android.app.QueuedWork.waitToFinish (QueuedWork.java:88)
  45. at android.app.ActivityThread.handleServiceArgs (ActivityThread.java:2943)
  46. at android.app.ActivityThread.access$2100 (ActivityThread.java:154)
  47. at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1414)
  48. at android.os.Handler.dispatchMessage (Handler.java:102)
  49. at android.os.Looper.loop (Looper.java:135)
  50. at android.app.ActivityThread.main (ActivityThread.java:5357)
  51. at java.lang.reflect.Method.invoke! (Native method)
  52. at java.lang.reflect.Method.invoke (Method.java:372)
  53. at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:952)
  54. at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:747)
  55. "Heap thread pool worker thread 0" tid=2 Native
  56. "Heap thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
  57. | group="" sCount=1 dsCount=0 obj=0x0 self=0xafd4b400
  58. | sysTid=17315 nice=0 cgrp=default sched=0/0 handle=0xb4918580
  59. | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=3 HZ=100
  60. | stack=0xb4219000-0xb421b000 stackSize=1020KB
  61. | held mutexes=
  62. native: pc 00000000000133cc /system/lib/libc.so (syscall+28)
  63. native: pc 00000000000a9a83 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
  64. native: pc 0000000000231b07 /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
  65. native: pc 0000000000231aaf /system/lib/libart.so (art::ThreadPoolWorker::Run()+54)
  66. native: pc 00000000002322ed /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
  67. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  68. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  69. "Heap thread pool worker thread 1" tid=3 Native
  70. "Heap thread pool worker thread 1" prio=5 tid=3 Native (still starting up)
  71. | group="" sCount=1 dsCount=0 obj=0x0 self=0xb4827c00
  72. | sysTid=17316 nice=0 cgrp=default sched=0/0 handle=0xb4918800
  73. | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=3 HZ=100
  74. | stack=0xb4119000-0xb411b000 stackSize=1020KB
  75. | held mutexes=
  76. native: pc 00000000000133cc /system/lib/libc.so (syscall+28)
  77. native: pc 00000000000a9a83 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
  78. native: pc 0000000000231b07 /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
  79. native: pc 0000000000231aaf /system/lib/libart.so (art::ThreadPoolWorker::Run()+54)
  80. native: pc 00000000002322ed /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
  81. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  82. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  83. "Heap thread pool worker thread 2" tid=4 Native
  84. "Heap thread pool worker thread 2" prio=5 tid=4 Native (still starting up)
  85. | group="" sCount=1 dsCount=0 obj=0x0 self=0xafd4c400
  86. | sysTid=17317 nice=0 cgrp=default sched=0/0 handle=0xb4918080
  87. | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=1 HZ=100
  88. | stack=0xb4019000-0xb401b000 stackSize=1020KB
  89. | held mutexes=
  90. native: pc 00000000000133cc /system/lib/libc.so (syscall+28)
  91. native: pc 00000000000a9a83 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread*)+82)
  92. native: pc 0000000000231b07 /system/lib/libart.so (art::ThreadPool::GetTask(art::Thread*)+50)
  93. native: pc 0000000000231aaf /system/lib/libart.so (art::ThreadPoolWorker::Run()+54)
  94. native: pc 00000000002322ed /system/lib/libart.so (art::ThreadPoolWorker::Callback(void*)+52)
  95. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  96. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  97. "ReferenceQueueDaemon" tid=6 Waiting
  98. "ReferenceQueueDaemon" daemon prio=5 tid=6 Waiting
  99. | group="system" sCount=1 dsCount=0 obj=0x12c742e0 self=0xb4a2bc00
  100. | sysTid=17319 nice=0 cgrp=default sched=0/0 handle=0xb4918a80
  101. | state=S schedstat=( 0 0 0 ) utm=6 stm=3 core=1 HZ=100
  102. | stack=0xb3e17000-0xb3e19000 stackSize=1036KB
  103. | held mutexes=
  104. at java.lang.Object.wait! (Native method)
  105. - waiting on <0x38f54b50> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
  106. at java.lang.Daemons$ReferenceQueueDaemon.run (Daemons.java:134)
  107. - locked <0x38f54b50> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
  108. at java.lang.Thread.run (Thread.java:818)
  109. "GCDaemon" tid=7 Waiting
  110. "GCDaemon" daemon prio=5 tid=7 Waiting
  111. | group="system" sCount=1 dsCount=0 obj=0x12c74460 self=0xb4a2d800
  112. | sysTid=17323 nice=0 cgrp=default sched=0/0 handle=0xb491a880
  113. | state=S schedstat=( 0 0 0 ) utm=65 stm=11 core=2 HZ=100
  114. | stack=0xa4f9c000-0xa4f9e000 stackSize=1036KB
  115. | held mutexes=
  116. at java.lang.Object.wait! (Native method)
  117. - waiting on <0x0d43a149> (a java.lang.Daemons$GCDaemon)
  118. at java.lang.Daemons$GCDaemon.run (Daemons.java:344)
  119. - locked <0x0d43a149> (a java.lang.Daemons$GCDaemon)
  120. at java.lang.Thread.run (Thread.java:818)
  121. "HeapTrimmerDaemon" tid=8 Waiting
  122. "HeapTrimmerDaemon" daemon prio=5 tid=8 Waiting
  123. | group="system" sCount=1 dsCount=0 obj=0x12c74400 self=0xb4a2d400
  124. | sysTid=17322 nice=0 cgrp=default sched=0/0 handle=0xb4919200
  125. | state=S schedstat=( 0 0 0 ) utm=0 stm=1 core=1 HZ=100
  126. | stack=0xa50a0000-0xa50a2000 stackSize=1036KB
  127. | held mutexes=
  128. at java.lang.Object.wait! (Native method)
  129. - waiting on <0x08661a4e> (a java.lang.Daemons$HeapTrimmerDaemon)
  130. at java.lang.Daemons$HeapTrimmerDaemon.run (Daemons.java:311)
  131. - locked <0x08661a4e> (a java.lang.Daemons$HeapTrimmerDaemon)
  132. at java.lang.Thread.run (Thread.java:818)
  133. "FinalizerWatchdogDaemon" tid=9 Waiting
  134. "FinalizerWatchdogDaemon" daemon prio=5 tid=9 Waiting
  135. | group="system" sCount=1 dsCount=0 obj=0x12c743a0 self=0xb4a2c400
  136. | sysTid=17321 nice=0 cgrp=default sched=0/0 handle=0xb4918f80
  137. | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=0 HZ=100
  138. | stack=0xafafe000-0xafb00000 stackSize=1036KB
  139. | held mutexes=
  140. at java.lang.Object.wait! (Native method)
  141. - waiting on <0x15d1276f> (a java.lang.Daemons$FinalizerWatchdogDaemon)
  142. at java.lang.Daemons$FinalizerWatchdogDaemon.waitForObject (Daemons.java:240)
  143. - locked <0x15d1276f> (a java.lang.Daemons$FinalizerWatchdogDaemon)
  144. at java.lang.Daemons$FinalizerWatchdogDaemon.run (Daemons.java:212)
  145. at java.lang.Thread.run (Thread.java:818)
  146. "FinalizerDaemon" tid=10 Waiting
  147. "FinalizerDaemon" daemon prio=5 tid=10 Waiting
  148. | group="system" sCount=1 dsCount=0 obj=0x12c74340 self=0xb4a2c000
  149. | sysTid=17320 nice=0 cgrp=default sched=0/0 handle=0xb4918d00
  150. | state=S schedstat=( 0 0 0 ) utm=18 stm=8 core=3 HZ=100
  151. | stack=0xb3d11000-0xb3d13000 stackSize=1036KB
  152. | held mutexes=
  153. at java.lang.Object.wait! (Native method)
  154. - waiting on <0x32ebcc7c> (a java.lang.ref.ReferenceQueue)
  155. at java.lang.Object.wait (Object.java:422)
  156. at java.lang.ref.ReferenceQueue.remove (ReferenceQueue.java:101)
  157. - locked <0x32ebcc7c> (a java.lang.ref.ReferenceQueue)
  158. at java.lang.ref.ReferenceQueue.remove (ReferenceQueue.java:72)
  159. at java.lang.Daemons$FinalizerDaemon.run (Daemons.java:174)
  160. at java.lang.Thread.run (Thread.java:818)
  161. "Binder_1" tid=11 Native
  162. "Binder_1" prio=5 tid=11 Native
  163. | group="main" sCount=1 dsCount=0 obj=0x12c620a0 self=0xb4a2e400
  164. | sysTid=17324 nice=0 cgrp=default sched=0/0 handle=0xb491ab00
  165. | state=S schedstat=( 0 0 0 ) utm=17 stm=21 core=0 HZ=100
  166. | stack=0xa4da0000-0xa4da2000 stackSize=1012KB
  167. | held mutexes=
  168. native: pc 000000000003b730 /system/lib/libc.so (__ioctl+8)
  169. native: pc 0000000000052631 /system/lib/libc.so (ioctl+14)
  170. native: pc 000000000001f417 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
  171. native: pc 000000000001f907 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6)
  172. native: pc 000000000001f969 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48)
  173. native: pc 0000000000023c17 /system/lib/libbinder.so (???)
  174. native: pc 0000000000010525 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
  175. native: pc 00000000000606ed /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
  176. native: pc 0000000000010095 /system/lib/libutils.so (???)
  177. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  178. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  179. "Binder_2" tid=12 Native
  180. "Binder_2" prio=5 tid=12 Native
  181. | group="main" sCount=1 dsCount=0 obj=0x12c650a0 self=0xafd4d400
  182. | sysTid=17325 nice=0 cgrp=default sched=0/0 handle=0xb491ad80
  183. | state=S schedstat=( 0 0 0 ) utm=21 stm=16 core=2 HZ=100
  184. | stack=0xa4ca2000-0xa4ca4000 stackSize=1012KB
  185. | held mutexes=
  186. native: pc 000000000003b730 /system/lib/libc.so (__ioctl+8)
  187. native: pc 0000000000052631 /system/lib/libc.so (ioctl+14)
  188. native: pc 000000000001f417 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
  189. native: pc 000000000001f907 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6)
  190. native: pc 000000000001f969 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48)
  191. native: pc 0000000000023c17 /system/lib/libbinder.so (???)
  192. native: pc 0000000000010525 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
  193. native: pc 00000000000606ed /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
  194. native: pc 0000000000010095 /system/lib/libutils.so (???)
  195. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  196. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  197. "Binder_3" tid=14 Native
  198. "Binder_3" prio=5 tid=14 Native
  199. | group="main" sCount=1 dsCount=0 obj=0x12f337c0 self=0xafd57800
  200. | sysTid=17482 nice=0 cgrp=default sched=0/0 handle=0xafc95980
  201. | state=S schedstat=( 0 0 0 ) utm=21 stm=16 core=3 HZ=100
  202. | stack=0xa2e23000-0xa2e25000 stackSize=1012KB
  203. | held mutexes=
  204. native: pc 000000000003b730 /system/lib/libc.so (__ioctl+8)
  205. native: pc 0000000000052631 /system/lib/libc.so (ioctl+14)
  206. native: pc 000000000001f417 /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+138)
  207. native: pc 000000000001f907 /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+6)
  208. native: pc 000000000001f969 /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+48)
  209. native: pc 0000000000023c17 /system/lib/libbinder.so (???)
  210. native: pc 0000000000010525 /system/lib/libutils.so (android::Thread::_threadLoop(void*)+112)
  211. native: pc 00000000000606ed /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+72)
  212. native: pc 0000000000010095 /system/lib/libutils.so (???)
  213. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  214. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
  215. "AsyncTask #1" tid=15 Waiting
  216. "AsyncTask #1" prio=5 tid=15 Waiting
  217. | group="main" sCount=1 dsCount=0 obj=0x12ea9760 self=0xafd4e400
  218. | sysTid=17368 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xafc94300
  219. | state=S schedstat=( 0 0 0 ) utm=1 stm=2 core=2 HZ=100
  220. | stack=0xa2d19000-0xa2d1b000 stackSize=1036KB
  221. | held mutexes=
  222. at java.lang.Object.wait! (Native method)
  223. - waiting on <0x2a9c0905> (a java.lang.Object)
  224. at java.lang.Thread.parkFor (Thread.java:1220)
  225. - locked <0x2a9c0905> (a java.lang.Object)
  226. at sun.misc.Unsafe.park (Unsafe.java:299)
  227. at java.util.concurrent.locks.LockSupport.park (LockSupport.java:157)
  228. at
  229. at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1097)
  230. at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:587)
  231. at java.lang.Thread.run (Thread.java:818)
  232. "Crashlytics Exception Handler1" tid=31 Waiting
  233. "Crashlytics Exception Handler1" prio=5 tid=31 Waiting
  234. | group="main" sCount=1 dsCount=0 obj=0x12f2d220 self=0xafd55000
  235. | sysTid=17404 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xafc97c80
  236. | state=S schedstat=( 0 0 0 ) utm=3 stm=0 core=1 HZ=100
  237. | stack=0xa1ee9000-0xa1eeb000 stackSize=1036KB
  238. | held mutexes=
  239. at java.lang.Object.wait! (Native method)
  240. - waiting on <0x073a6eb9> (a java.lang.Object)
  241. at java.lang.Thread.parkFor (Thread.java:1220)
  242. - locked <0x073a6eb9> (a java.lang.Object)
  243. at sun.misc.Unsafe.park (Unsafe.java:299)
  244. at java.util.concurrent.locks.LockSupport.park (LockSupport.java:157)
  245. at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await (AbstractQueuedSynchronizer.java:2016)
  246. at java.util.concurrent.LinkedBlockingQueue.take (LinkedBlockingQueue.java:410)
  247. at java.util.concurrent.ThreadPoolExecutor.getTask (ThreadPoolExecutor.java:1035)
  248. at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1097)
  249. at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:587)
  250. at c.a.a.a.a.b.n$1$1.a (ExecutorUtils.java:75)
  251. at c.a.a.a.a.b.h.run (BackgroundPriorityRunnable.java:30)
  252. at java.lang.Thread.run (Thread.java:818)
  253. "Answers Events Handler1" tid=32 Waiting
  254. "Answers Events Handler1" prio=5 tid=32 Waiting
  255. | group="main" sCount=1 dsCount=0 obj=0x13072160 self=0xafd54800
  256. | sysTid=17397 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xafc98180
  257. | state=S schedstat=( 0 0 0 ) utm=1 stm=0 core=1 HZ=100
  258. | stack=0xa177a000-0xa177c000 stackSize=1036KB
  259. | held mutexes=
  260. at java.lang.Object.wait! (Native method)
  261. - waiting on <0x3bda2880> (a java.lang.Object)
  262. at java.lang.Thread.parkFor (Thread.java:1220)
  263. - locked <0x3bda2880> (a java.lang.Object)
  264. at sun.misc.Unsafe.park (Unsafe.java:299)
  265. at java.util.concurrent.locks.LockSupport.park (LockSupport.java:157)
  266. at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await (AbstractQueuedSynchronizer.java:2016)
  267. at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take (ScheduledThreadPoolExecutor.java:1048)
  268. at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take (ScheduledThreadPoolExecutor.java:776)
  269. at java.util.concurrent.ThreadPoolExecutor.getTask (ThreadPoolExecutor.java:1035)
  270. at java.util.concurrent.ThreadPoolExecutor.runWorker (ThreadPoolExecutor.java:1097)
  271. at java.util.concurrent.ThreadPoolExecutor$Worker.run (ThreadPoolExecutor.java:587)
  272. at c.a.a.a.a.b.n$1$1.a (ExecutorUtils.java:75)
  273. at c.a.a.a.a.b.h.run (BackgroundPriorityRunnable.java:30)
  274. at java.lang.Thread.run (Thread.java:818)
  275. "GoogleApiHandler" tid=33 Native
  276. "GoogleApiHandler" prio=5 tid=33 Native
  277. | group="main" sCount=1 dsCount=0 obj=0x12ec6ba0 self=0xafd55400
  278. | sysTid=17407 nice=9 cgrp=default sched=0/0 handle=0xafc97f00
  279. | state=S schedstat=( 0 0 0 ) utm=5 stm=1 core=0 HZ=100
  280. | stack=0xa21ed000-0xa21ef000 stackSize=1036KB
  281. | held mutexes=
  282. native: pc 000000000003b3ec /system/lib/libc.so (__epoll_pwait+20)
  283. native: pc 00000000000151cf /system/lib/libc.so (epoll_pwait+26)
  284. native: pc 00000000000151dd /system/lib/libc.so (epoll_wait+6)
  285. native: pc 00000000000124eb /system/lib/libutils.so (android::Looper::pollInner(int)+98)
  286. native: pc 0000000000012715 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
  287. native: pc 00000000000825b9 /system/lib/libandroid_runtime.so (android::NativeMessageQueue::pollOnce(_JNIEnv*, int)+22)
  288. native: pc 00000000000b39cb /data/dalvik-cache/arm/system@<EMAIL_ADDRESS> (Java_android_os_MessageQueue_nativePollOnce__JI+102)
  289. at android.os.MessageQueue.nativePollOnce (Native method)
  290. at android.os.MessageQueue.next (MessageQueue.java:143)
  291. at android.os.Looper.loop (Looper.java:122)
  292. at android.os.HandlerThread.run (HandlerThread.java:61)
  293. "Thread-881" tid=35 Waiting
  294. "Thread-881" prio=5 tid=35 Waiting
  295. | group="main" sCount=1 dsCount=0 obj=0x1306fb20 self=0xafd5a800
  296. | sysTid=17422 nice=10 cgrp=bg_non_interactive sched=0/0 handle=0xafc95c00
  297. | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=2 HZ=100
  298. | stack=0xa187e000-0xa1880000 stackSize=1036KB
  299. | held mutexes=
  300. at java.lang.Object.wait! (Native method)
  301. - waiting on <0x3db3b2fe> (a java.lang.Object)
  302. at java.lang.Thread.parkFor (Thread.java:1220)
  303. - locked <0x3db3b2fe> (a java.lang.Object)
  304. at sun.misc.Unsafe.park (Unsafe.java:299)
  305. at java.util.concurrent.locks.LockSupport.park (LockSupport.java:157)
  306. at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await (AbstractQueuedSynchronizer.java:2016)
  307. at java.util.concurrent.LinkedBlockingQueue.take (LinkedBlockingQueue.java:410)
  308. at com.myapp.Applicationcls$2.run (Applicationcls.java:365)
  309. at java.lang.Thread.run (Thread.java:818)
  310. "Signal Catcher" tid=5 Runnable
  311. "Signal Catcher" daemon prio=5 tid=5 Runnable
  312. | group="system" sCount=0 dsCount=0 obj=0x12c070a0 self=0xb4828c00
  313. | sysTid=17318 nice=0 cgrp=default sched=0/0 handle=0xb4918300
  314. | state=R schedstat=( 0 0 0 ) utm=7 stm=3 core=1 HZ=100
  315. | stack=0xb3f1b000-0xb3f1d000 stackSize=1012KB
  316. | held mutexes= "thread list lock" "mutator lock"(exclusive held)
  317. native: pc 0000000000004e64 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
  318. native: pc 0000000000003665 /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
  319. native: pc 0000000000243459 /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+68)
  320. native: pc 00000000002277c3 /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+146)
  321. native: pc 0000000000230b4b /system/lib/libart.so (art::ThreadList::DumpForSigQuit(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+142)
  322. native: pc 0000000000216017 /system/lib/libart.so (art::Runtime::DumpForSigQuit(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+66)
  323. native: pc 000000000021c4a5 /system/lib/libart.so (art::SignalCatcher::HandleSigQuit()+752)
  324. native: pc 000000000021cb4f /system/lib/libart.so (art::SignalCatcher::Run(void*)+318)
  325. native: pc 0000000000016eff /system/lib/libc.so (__pthread_start(void*)+30)
  326. native: pc 0000000000014f33 /system/lib/libc.so (__start_thread+6)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement