<p style="text-align: left; text-indent: 0px; margin: 0px 0px 1.25em; line-height: 1.43;"><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">Hi </span><span style="font-family: -apple-system, "system-ui", system-ui, "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", "Noto Sans CJK SC", sans-serif; font-size: 14px; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);">Patricio</span></p><p style="text-align: left; text-indent: 0px; margin: 0px 0px 1.25em; line-height: 1.43;"><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">In our scenario, we encountered a similar issue that appears to stem from the same root cause. I’m happy to share the case details.</span></p><p style="text-align: left; text-indent: 0px; margin: 1.25em 0px; line-height: 1.43;"><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">The problem arises in our custom class loader: when we use Logback to log messages, Logback attempts to acquire a lock during write operations. Meanwhile, a virtual thread that’s in the process of class initialization gets </span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(17, 24, 39); font-weight: 600;">pinned</span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);"> to its carrier thread. As a result, other virtual threads attempting to use the same class end up being blocked with the message:<br  /></span><span style="font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 14px; color: rgb(17, 24, 39); font-weight: 600;"><code style="font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;">"Waited for initialization of <class> by other thread"</code></span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">.</span></p><p style="text-align: left; text-indent: 0px; margin: 1.25em 0px; line-height: 1.43;"><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">These waiting threads also get pinned to their carrier threads — but crucially, they </span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(17, 24, 39); font-weight: 600;">do not enter</span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);"> </span><span style="font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 14px; color: rgb(17, 24, 39); font-weight: 600;"><code style="font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;"><clinit></code></span><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">. This creates a deadlock-like situation where:</span></p><ul style="margin-block: 0px; padding-inline-start: 42px; text-align: left; margin: 1.25em 0px; padding-left: 0px; list-style-position: initial; list-style-type: disc; line-height: 1.43;"><li style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81); margin-top: 0.5em; margin-bottom: 0.5em;">One ForkJoinPool (FJP) worker thread is trying to acquire Logback’s lock.</li><li style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81); margin-top: 0.5em; margin-bottom: 0.5em;">Other FJP workers are waiting on a non-existent <span style="color: rgb(17, 24, 39); font-weight: 600;">ObjectMonitor</span> (likely due to the pinned thread holding the monitor and not progressing).</li></ul><p style="text-align: left; text-indent: 0px; margin: 1.25em 0px; line-height: 1.43;"><span style="font-family: "Open Sans", "Open Sans Fallback: Arial", sans-serif; font-size: 16px; color: rgb(55, 65, 81);">Interestingly, the stack traces appear to be in normal Java code, which makes the root cause non-obvious at first glance.</span></p><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">"ForkJoinPool-1-worker-28" #799 [828] daemon prio=5 os_prio=0 cpu=47855486.95ms elapsed=258235.59s allocated=42813G defined_classes=287 tid=0x00007f4803ad9000 nid=828 waiting on condition  [0x00007fd88ee65000]</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   java.lang.Thread.State: WAITING (parking)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   Carrying virtual thread #101393</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.run(java.base@21.0.3.0.6.1-redjdk/Continuation.java:252)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      - parking to wait for  <0x00007f4892f23810> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.runContinuation(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:299)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread$$Lambda/0x00007f484085cc48.run(java.base@21.0.3.0.6.1-redjdk/Unknown Source)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(java.base@21.0.3.0.6.1-redjdk/ForkJoinTask.java:1403)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinTask.doExec(java.base@21.0.3.0.6.1-redjdk/ForkJoinTask.java:387)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1313)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool.scan(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1844)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool.runWorker(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1809)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinWorkerThread.run(java.base@21.0.3.0.6.1-redjdk/ForkJoinWorkerThread.java:188)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   "engine-44-111" #101393 Mounted virtual thread on "ForkJoinPool-1-worker-28" #799</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.misc.Unsafe.park(java.base@21.0.3.0.6.1-redjdk/Native Method)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      - parking to wait for  <0x00007fd984009f38> (a java.util.concurrent.locks.ReentrantLock$NonfairSync)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.parkOnCarrierThread(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:817)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.park(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:755)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.System$2.parkVirtualThread(java.base@21.0.3.0.6.1-redjdk/System.java:2714)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.locks.LockSupport.park(java.base@21.0.3.0.6.1-redjdk/LockSupport.java:221)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.base@21.0.3.0.6.1-redjdk/AbstractQueuedSynchronizer.java:754)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(java.base@21.0.3.0.6.1-redjdk/AbstractQueuedSynchronizer.java:990)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.locks.ReentrantLock$Sync.lock(java.base@21.0.3.0.6.1-redjdk/ReentrantLock.java:153)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.locks.ReentrantLock.lock(java.base@21.0.3.0.6.1-redjdk/ReentrantLock.java:322)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.OutputStreamAppender.writeBytes(OutputStreamAppender.java:197)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.OutputStreamAppender.subAppend(OutputStreamAppender.java:231)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.rolling.RollingFileAppender.subAppend(RollingFileAppender.java:235)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.OutputStreamAppender.append(OutputStreamAppender.java:102)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.UnsynchronizedAppenderBase.doAppend(UnsynchronizedAppenderBase.java:84)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.core.spi.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:51)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.classic.Logger.appendLoopOnAppenders(Logger.java:270)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.classic.Logger.callAppenders(Logger.java:257)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.classic.Logger.buildLoggingEventAndAppend(Logger.java:421)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.classic.Logger.filterAndLog_0_Or3Plus(Logger.java:383)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at ch.qos.logback.classic.Logger.info(Logger.java:591)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at <span style="background-color: rgb(255, 255, 255);">com.example.loader.</span>PluginClassLoader.reverseLoadClassInternal(PluginClassLoader.java:217)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at <span style="background-color: rgb(255, 255, 255);">com.example.loader.</span>PluginClassLoader.loadClass(PluginClassLoader.java:132)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      - locked <0x00007fd9b83dabc0> (a com.example.loader.SharedPluginClassLoader)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.ClassLoader.loadClass(java.base@21.0.3.0.6.1-redjdk/ClassLoader.java:526)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at com.example.MyExample.init(<span style="background-color: rgb(255, 255, 255);">MyExample</span>.java:34)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at com.example.TaskHelper$$Lambda/0x00007f484149dec0.run(Unknown Source)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.3.0.6.1-redjdk/ThreadPoolExecutor.java:1144)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.3.0.6.1-redjdk/ThreadPoolExecutor.java:642)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.Thread.runWith(java.base@21.0.3.0.6.1-redjdk/Thread.java:1607)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.run(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:462)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread$VThreadContinuation$1.run(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:254)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.enter0(java.base@21.0.3.0.6.1-redjdk/Continuation.java:326)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.enter(java.base@21.0.3.0.6.1-redjdk/Continuation.java:317)</div><div style="line-height: 1.43;"><br  /></div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">"ForkJoinPool-1-worker-23" #786 [828] daemon prio=5 os_prio=0 cpu=55.73ms elapsed=51857.88s allocated=1659K defined_classes=6 tid=0x00007fd92f9de800 nid=828 in Object.wait()  [0x00007fd88ef67000]</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   java.lang.Thread.State: RUNNABLE</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   Carrying virtual thread #1265</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.run(java.base@21.0.3.0.6.1-redjdk/Continuation.java:255)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.runContinuation(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:299)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread$$Lambda/0x00007fd93b7e4068.run(java.base@21.0.3.0.6.1-redjdk/Unknown Source)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinTask$RunnableExecuteAction.exec(java.base@21.0.3.0.6.1-redjdk/ForkJoinTask.java:1423)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinTask.doExec(java.base@21.0.3.0.6.1-redjdk/ForkJoinTask.java:387)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1313)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool.scan(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1844)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinPool.runWorker(java.base@21.0.3.0.6.1-redjdk/ForkJoinPool.java:1809)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ForkJoinWorkerThread.run(java.base@21.0.3.0.6.1-redjdk/ForkJoinWorkerThread.java:188)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">   "arkhouyi-houyi-pool-3-5" #1265 Mounted virtual thread on "ForkJoinPool-1-worker-23" #786</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at com.example.ExampleAccessor.getExample(<span style="background-color: rgb(255, 255, 255);">ExampleAccessor</span>.java:57)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at com.example.TaskHelper$$Lambda/0x00007fd93c47e4d8.run(Unknown Source)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ThreadPoolExecutor.runWorker(java.base@21.0.3.0.6.1-redjdk/ThreadPoolExecutor.java:1144)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.util.concurrent.ThreadPoolExecutor$Worker.run(java.base@21.0.3.0.6.1-redjdk/ThreadPoolExecutor.java:642)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.Thread.runWith(java.base@21.0.3.0.6.1-redjdk/Thread.java:1607)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread.run(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:462)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at java.lang.VirtualThread$VThreadContinuation$1.run(java.base@21.0.3.0.6.1-redjdk/VirtualThread.java:254)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.enter0(java.base@21.0.3.0.6.1-redjdk/Continuation.java:326)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">      at jdk.internal.vm.Continuation.enter(java.base@21.0.3.0.6.1-redjdk/Continuation.java:317)</div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;"><br  /></div><div style="font-family: -apple-system, system-ui; font-size: 14px; color: rgb(0, 0, 0); line-height: 1.43;">Xialin Liu</div><article style="line-height: 1.43;"><div style="display:flex;align-items:center;padding-top:8px" contenteditable="false">
        <div style="color:#959DA6;font-size:12px;line-height:30px">Original</div>
        <hr style="border: none;flex-grow:1;border-top:1px solid rgba(21, 46, 74, 0.07);margin-left:8px"  />
      </div><table data-uneditable="true" style="line-height: 20px; border-radius: 6px; background-color: rgba(20, 46, 77, 0.05); margin: 0px; width: 100%;"><tbody><tr><td style="line-height: 20px; padding: 8px;"><div style="line-height: 20px; font-size: 12px;"><span style="color: rgb(92, 97, 102);">From: </span><span style="color: rgb(0, 0, 0);">loom-dev-request</span> <span style="color: rgb(149, 157, 166);"><loom-dev-request@openjdk.org></span></div><div style="line-height: 20px; font-size: 12px;"><span style="color: rgb(92, 97, 102);">Date: </span><span style="color: rgb(0, 0, 0);">2025-11-04 02:08</span></div><div style="line-height: 20px; font-size: 12px;"><span style="color: rgb(92, 97, 102);">To: </span><span style="color: rgb(0, 0, 0);">loom-dev</span> <span style="color: rgb(149, 157, 166);"><loom-dev@openjdk.org></span></div><div style="line-height: 20px; font-size: 12px;"><span style="color: rgb(92, 97, 102);">Subject: </span><span style="color: rgb(0, 0, 0);">loom-dev Digest, Vol 95, Issue 2</span></div></td></tr></tbody></table><div><br  /></div><div><br  /><br  />Hi Danny,<br  /><br  />I see a couple of FJP workers that don?t seem to be carrying a virtual <br  />thread blocked on clinit. Do you have the full stacktraces? If <br  />available, the native stack traces would also be useful to verify the <br  />entry point into the VM for the ones blocked at clinit.<br  /><br  />Thanks,<br  />Patricio<br  /><br  /></div></article>