Advertisement
TheChetan

StackDump

Apr 2nd, 2018 (edited)
800
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.63 KB | None | 0 0
  1. For kill -3:
  2. [1] For RUNNABLE:
  3.     "netty-event-loop-7" #95 prio=5 os_prio=31 tid=0x00007febaeee9000 nid=0x9f27 runnable [0x000070000e11b000]
  4.        java.lang.Thread.State: RUNNABLE
  5.         at sun.nio.ch.KQueueArrayWrapper.kevent0(Native Method)
  6.         at sun.nio.ch.KQueueArrayWrapper.poll(KQueueArrayWrapper.java:198)
  7.         at sun.nio.ch.KQueueSelectorImpl.doSelect(KQueueSelectorImpl.java:117)
  8.         at sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:86)
  9.         - locked <0x000000078537b8b8> (a io.netty.channel.nio.SelectedSelectionKeySet)
  10.         - locked <0x000000078537b918> (a java.util.Collections$UnmodifiableSet)
  11.         - locked <0x000000078537b818> (a sun.nio.ch.KQueueSelectorImpl)
  12.         at sun.nio.ch.SelectorImpl.select(SelectorImpl.java:97)
  13.         at io.netty.channel.nio.NioEventLoop.select(NioEventLoop.java:760)
  14.         at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:401)
  15.         at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:140)
  16.         at java.lang.Thread.run(Thread.java:748)
  17.  
  18. [2] For TIMED_WAITING:
  19.     "Thread-21" #275 daemon prio=5 os_prio=31 tid=0x00007feba67e6000 nid=0xa803 in Object.wait() [0x000070000fa66000]
  20.        java.lang.Thread.State: TIMED_WAITING (on object monitor)
  21.         at java.lang.Object.wait(Native Method)
  22.         at com.mashape.unirest.http.utils.SyncIdleConnectionMonitorThread.run(SyncIdleConnectionMonitorThread.java:22)
  23.         - locked <0x0000000785b34c08> (a com.mashape.unirest.http.utils.SyncIdleConnectionMonitorThread)
  24.  
  25. [3] For WAITING:
  26.     "play-dev-mode-akka.actor.default-dispatcher-3" #87 prio=5 os_prio=31 tid=0x00007febaec48000 nid=0x8603 waiting on condition [0x000070000e830000]
  27.        java.lang.Thread.State: WAITING (parking)
  28.         at sun.misc.Unsafe.park(Native Method)
  29.         - parking to wait for  <0x000000078535f160> (a akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinPool)
  30.         at scala.concurrent.forkjoin.ForkJoinPool.scan(ForkJoinPool.java:2075)
  31.         at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979)
  32.         at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107)
  33.  
  34. For jstack:
  35. [1] For IN_NATIVE
  36.     Thread 24431: (state = IN_NATIVE)
  37.      - sun.nio.ch.KQueueArrayWrapper.kevent0(int, long, int, long) @bci=0 (Compiled frame; information may be imprecise)
  38.      - sun.nio.ch.KQueueArrayWrapper.poll(long) @bci=17, line=198 (Compiled frame)
  39.      - sun.nio.ch.KQueueSelectorImpl.doSelect(long) @bci=30, line=117 (Compiled frame)
  40.      - sun.nio.ch.SelectorImpl.lockAndDoSelect(long) @bci=37, line=86 (Compiled frame)
  41.      - sun.nio.ch.SelectorImpl.select(long) @bci=30, line=97 (Compiled frame)
  42.      - io.netty.channel.nio.NioEventLoop.select(boolean) @bci=91, line=760 (Compiled frame)
  43.      - io.netty.channel.nio.NioEventLoop.run() @bci=56, line=401 (Compiled frame)
  44.      - io.netty.util.concurrent.SingleThreadEventExecutor$2.run() @bci=13, line=140 (Interpreted frame)
  45.      - java.lang.Thread.run() @bci=11, line=748 (Interpreted frame)
  46.  
  47. [2] For BLOCKED:   
  48.     Thread 43011: (state = BLOCKED)
  49.      - java.lang.Object.wait(long) @bci=0 (Compiled frame; information may be imprecise)
  50.      - com.mashape.unirest.http.utils.SyncIdleConnectionMonitorThread.run() @bci=17, line=22 (Interpreted frame)
  51.  
  52. [3] For BLOCKED:
  53.     Thread 34307: (state = BLOCKED)
  54.      - sun.misc.Unsafe.park(boolean, long) @bci=0 (Compiled frame; information may be imprecise)
  55.      - scala.concurrent.forkjoin.ForkJoinPool.scan(scala.concurrent.forkjoin.ForkJoinPool$WorkQueue) @bci=525, line=2075 (Compiled frame)
  56.      - scala.concurrent.forkjoin.ForkJoinPool.runWorker(scala.concurrent.forkjoin.ForkJoinPool$WorkQueue) @bci=8, line=1979 (Interpreted frame)
  57.      - scala.concurrent.forkjoin.ForkJoinWorkerThread.run() @bci=14, line=107 (Interpreted frame)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement