The failure

serguei.spitsyn at oracle.com serguei.spitsyn at oracle.com
Tue Oct 23 07:58:11 UTC 2018


Hi David,

You are right, thanks.
It means, this deadlock needs more analysis.
For completeness, the stack traces are in attachments.

Thanks,
Serguei


On 10/23/18 00:43, David Holmes wrote:
> Hi Serguei,
>
> The JvmtiThreadState_lock is always acquired with safepoint checks 
> enabled, so all JavaThreads blocked trying to acquire it will be 
> _thread_blocked and so safepoint-safe and so won't be holding up the 
> safepoint.
>
> David
>
> On 23/10/2018 5:21 PM, serguei.spitsyn at oracle.com wrote:
>> Hi,
>>
>> I've added the seviceability-dev mailing list.
>> It can be interesting for the SVC folks. :)
>>
>>
>> On 10/22/18 22:14, Leonid Mesnik wrote:
>>> Hi
>>>
>>> Seems last version also crashes with 2 other different symptoms.
>>> http://java.se.oracle.com:10065/mdash/jobs/lmesnik-ks8-20181021-0638-7157/results?search=status%3Afailed+AND+-state%3Ainvalid 
>>> <http://java.se.oracle.com:10065/mdash/jobs/lmesnik-ks8-20181021-0638-7157/results?search=status:failed+AND+-state:invalid> 
>>>
>>>
>>>
>>> Also it might hangs with  stack attached.  Seems that test might be 
>>> blocked because it invoke 2 jvmti methods. Can jvmti agent invoke 
>>> jvmti methods from different threads?
>>
>> Yes, in general.
>> However, you have to be careful when using debugging features.
>> Below, one thread is enabling single stepping while another thread is 
>> being suspended.
>> Both are blocked at a safepoint which is Okay in general but not Okay 
>> if they hold any lock.
>> For instance, the thread #152 is holding the monitor JvmtiThreadState.
>>
>> Also, I see a couple of more threads that are interesting as well:
>>
>> Thread 159 (Thread 0x2ae40b78f700 (LWP 27962)):
>> #0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from 
>> /lib64/libpthread.so.0
>> #1  0x00002ae393ba8d63 in os::PlatformEvent::park 
>> (this=this at entry=0x2ae3984c9100) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
>> #2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3984c9100) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
>> #3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae3984c7800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461 
>>
>> #4  0x00002ae393b512c1 in lock (Self=0x2ae3984c7800, 
>> this=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
>> #5  Monitor::lock (this=this at entry=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
>> #6  0x00002ae39350510c in MutexLocker (mutex=0x2ae398024f10, 
>> this=<synthetic pointer>) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
>> #7  ciEnv::cache_jvmti_state (this=this at entry=0x2ae40b78eb30) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/ci/ciEnv.cpp:229
>> #8  0x00002ae3935d3294 in CompileBroker::invoke_compiler_on_method 
>> (task=task at entry=0x2ae48800ff40) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:2084
>> #9  0x00002ae3935d4f48 in CompileBroker::compiler_thread_loop () at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:1798
>> #10 0x00002ae393d7338a in JavaThread::thread_main_inner 
>> (this=this at entry=0x2ae3984c7800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
>> #11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984c7800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
>> #12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984c7800) 
>> at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
>> #13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
>> #14 0x00002ae392cc234d in clone () from /lib64/libc.so.6
>>
>> Thread 158 (Thread 0x2ae40b890700 (LWP 27963)):
>> #0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from 
>> /lib64/libpthread.so.0
>> #1  0x00002ae393ba8d63 in os::PlatformEvent::park 
>> (this=this at entry=0x2ae3984cbb00) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
>> #2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3984cbb00) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
>> #3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae3984ca800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461 
>>
>> #4  0x00002ae393b512c1 in lock (Self=0x2ae3984ca800, 
>> this=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
>> #5  Monitor::lock (this=this at entry=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
>> #6  0x00002ae39350510c in MutexLocker (mutex=0x2ae398024f10, 
>> this=<synthetic pointer>) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
>> #7  ciEnv::cache_jvmti_state (this=this at entry=0x2ae40b88fb30) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/ci/ciEnv.cpp:229
>> #8  0x00002ae3935d3294 in CompileBroker::invoke_compiler_on_method 
>> (task=task at entry=0x2ae49c00a670) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:2084
>> #9  0x00002ae3935d4f48 in CompileBroker::compiler_thread_loop () at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:1798
>> #10 0x00002ae393d7338a in JavaThread::thread_main_inner 
>> (this=this at entry=0x2ae3984ca800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
>> #11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984ca800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
>> #12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984ca800) 
>> at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
>> #13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
>> #14 0x00002ae392cc234d in clone () from /lib64/libc.so.6
>>
>> Thread 51 (Thread 0x2ae49549b700 (LWP 29678)):
>> #0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from 
>> /lib64/libpthread.so.0
>> #1  0x00002ae393ba8d63 in os::PlatformEvent::park 
>> (this=this at entry=0x2ae460061c00) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
>> #2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460061c00) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
>> #3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600c2800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461 
>>
>> #4  0x00002ae393b512c1 in lock (Self=0x2ae4600c2800, 
>> this=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
>> #5  Monitor::lock (this=this at entry=0x2ae398024f10) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
>> #6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, 
>> this=<synthetic pointer>) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
>> #7  thread_started (thread=0x2ae4600c2800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
>> #8  JvmtiEventController::thread_started (thread=0x2ae4600c2800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
>> #9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start 
>> (thread=thread at entry=0x2ae4600c2800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
>> #10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600c2800) at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
>> #11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c2800) 
>> at 
>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
>> #12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
>> #13 0x00002ae392cc234d in clone () from /lib64/libc.so.6
>>
>>
>> These two thread are blocked on the monitor JvmtiThreadState_lock in 
>> the function ciEnv::cache_jvmti_state().
>> Also, there are many threads (like #51) that are executing 
>> JvmtiExport::post_thread_start and blocked on the same monitor.
>>
>>
>> Now, the question is why this safepoint can not start?
>> What thread is blocking it? Or in reverse, what thread this safepoint 
>> is waiting for?
>>
>> I think, this safepoint operation is waiting for all threads that are 
>> blocked on the JvmtiThreadState_lock.
>>
>> Conclusion:
>>
>> The deadlock is:
>>
>> Thread #152:
>>    - grabbed the monitor JvmtiThreadState_lock
>>    - blocked in the VM_GetCurrentLocation in the function 
>> JvmtiEnvThreadState::reset_current_location()
>>
>> Many other threads:
>>    - blocked on the monitor JvmtiThreadState_lock
>>    - can not reach the blocked at a safepoint state (all threads have 
>> to reach this state for this safepoint to happen)
>>
>> It seems to me, this is a bug which has to be filed.
>>
>> My guess is that this will stop to reproduce after if you turn off 
>> the single stepping for thread #152.
>> Please, let me know about the results.
>>
>>
>>> Assuming that crashes look like VM bugs I think it make sense to 
>>> integrate jvmti changes but *don't* enabled jvmti module by default.
>>
>> This one is a deadlock.
>> However, the root cause is a race condition that can potentially 
>> result in both deadlocks and crashes.
>> So, I'm curious if you observed crashes as well.
>>
>>
>>> And add to more tests with jvmti enabled.
>>> So anyone could easily run them to reproduce crashes.  This test 
>>> would be out of CI to don't introduce any bugs. Does it make sense?
>>>
>>> Consider hang - I think that it might be product bug since I don't 
>>> see any locking on my monitors. But I am not sure. Is it possible 
>>> that any my code jvmti agent prevent VM to get into safepoint?
>>> Could we discuss it tomorrow or his week when you have a time?
>>
>> Yes, of course.
>> Let's find some time tomorrow.
>>
>>
>>> Any suggestion how to diagnose deadlock would be great.
>>
>> Analysis of stack traces is needed.
>> It is non-trivial in this particular case as there are so many 
>> threads executed at the same time.
>>
>>
>>> Part of stack trace with 2 my threads only:
>>>
>>> Thread 136 (Thread 0x2ae494100700 (LWP 28023)):
>>> #0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from 
>>> /lib64/libpthread.so.0
>>> #1  0x00002ae393ba8d63 in os::PlatformEvent::park 
>>> (this=this at entry=0x2ae454005800) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
>>> #2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae454005800) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
>>> #3  Monitor::IWait (this=this at entry=0x2ae398023c10, 
>>> Self=Self at entry=0x2ae454004800, timo=timo at entry=0) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:76\
>>> 8
>>> #4  0x00002ae393b51f2e in Monitor::wait 
>>> (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, 
>>> timeout=timeout at entry=0, 
>>> as_suspend_equivalent=as_suspend_equivalent at en\
>>> try=false) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
>>> #5  0x00002ae393de7867 in VMThread::execute 
>>> (op=op at entry=0x2ae4940ffb10) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
>>> #6  0x00002ae393d6a3bd in JavaThread::java_suspend 
>>> (this=this at entry=0x2ae3985f2000) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:2321
>>> #7  0x00002ae3939ad7e1 in JvmtiSuspendControl::suspend 
>>> (java_thread=java_thread at entry=0x2ae3985f2000) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:8\
>>> 47
>>> #8  0x00002ae3939887ae in JvmtiEnv::SuspendThread 
>>> (this=this at entry=0x2ae39801b270, java_thread=0x2ae3985f2000) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiE\
>>> nv.cpp:955
>>> #9  0x00002ae39393a8c6 in jvmti_SuspendThread (env=0x2ae39801b270, 
>>> thread=0x2ae49929fdf8) at 
>>> /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/hotspot/variant-server/gensrc/jvmtifiles\
>>> /jvmtiEnter.cpp:527
>>> #10 0x00002ae394d973ee in agent_sampler (jvmti=0x2ae39801b270, 
>>> env=<optimized out>, p=<optimized out>) at 
>>> /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitc\
>>> hensink/process/stress/modules/libJvmtiStressModule.c:274
>>> #11 0x00002ae3939ab24d in call_start_function (this=0x2ae454004800) 
>>> at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:85
>>> #12 JvmtiAgentThread::start_function_wrapper (thread=0x2ae454004800, 
>>> __the_thread__=<optimized out>) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:79
>>> #13 0x00002ae393d7338a in JavaThread::thread_main_inner 
>>> (this=this at entry=0x2ae454004800) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
>>> #14 0x00002ae393d736c6 in JavaThread::run (this=0x2ae454004800) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
>>> #15 0x00002ae393ba0070 in thread_native_entry 
>>> (thread=0x2ae454004800) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
>>> #16 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
>>> #17 0x00002ae392cc234d in clone () from /lib64/libc.so.6
>>>
>>>
>>>
>>> Thread 152 (Thread 0x2ae427060700 (LWP 27995)):
>>> #0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from 
>>> /lib64/libpthread.so.0
>>> #1  0x00002ae393ba8d63 in os::PlatformEvent::park 
>>> (this=this at entry=0x2ae3985e7400) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
>>> #2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3985e7400) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
>>> #3  Monitor::IWait (this=this at entry=0x2ae398023c10, 
>>> Self=Self at entry=0x2ae3985e6000, timo=timo at entry=0) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:76\
>>> 8
>>> #4  0x00002ae393b51f2e in Monitor::wait 
>>> (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, 
>>> timeout=timeout at entry=0, 
>>> as_suspend_equivalent=as_suspend_equivalent at en\
>>> try=false) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
>>> #5  0x00002ae393de7867 in VMThread::execute (op=0x2ae42705f500) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
>>> #6  0x00002ae3939965f3 in 
>>> JvmtiEnvThreadState::reset_current_location 
>>> (this=this at entry=0x2ae6bc000d80, 
>>> event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, 
>>> enabled=enabled at entry=tr\
>>> ue) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEnvThreadState.cpp:312
>>> #7  0x00002ae393997acf in recompute_env_thread_enabled 
>>> (state=0x2ae6bc000cd0, ets=0x2ae6bc000d80) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventControlle\
>>> r.cpp:490
>>> #8  JvmtiEventControllerPrivate::recompute_thread_enabled 
>>> (state=state at entry=0x2ae6bc000cd0) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp\
>>> :523
>>> #9  0x00002ae393998168 in 
>>> JvmtiEventControllerPrivate::recompute_enabled () at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:598
>>> #10 0x00002ae39399a244 in set_user_enabled (enabled=true, 
>>> event_type=JVMTI_EVENT_SINGLE_STEP, thread=0x0, env=0x2ae39801b270) 
>>> at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/sha\
>>> re/prims/jvmtiEventController.cpp:818
>>> #11 JvmtiEventController::set_user_enabled (env=0x2ae39801b270, 
>>> thread=0x0, event_type=JVMTI_EVENT_SINGLE_STEP, enabled=<optimized 
>>> out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/\
>>> hotspot/share/prims/jvmtiEventController.cpp:963
>>> #12 0x00002ae393987d2d in JvmtiEnv::SetEventNotificationMode 
>>> (this=this at entry=0x2ae39801b270, mode=mode at entry=JVMTI_ENABLE, 
>>> event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, eve\
>>> nt_thread=event_thread at entry=0x0) at 
>>> /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEnv.cpp:543
>>> #13 0x00002ae3939414eb in jvmti_SetEventNotificationMode 
>>> (env=0x2ae39801b270, mode=mode at entry=JVMTI_ENABLE, 
>>> event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, 
>>> event_thread=event_\
>>> thread at entry=0x0) at 
>>> /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp:5389
>>> #14 0x00002ae394d97989 in enable_events () at 
>>> /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJvmtiStressModule.c:519
>>> #15 0x00002ae394d98070 in 
>>> Java_applications_kitchensink_process_stress_modules_JvmtiStressModule_startIteration 
>>> (env=<optimized out>, this=<optimized out>) at /scratch/lmesnik/ws/h\
>>> s-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJvmtiStressModule.c:697 
>>>
>>> #16 0x00002ae3a43ef257 in ?? ()
>>> #17 0x00002ae3a43eede1 in ?? ()
>>> #18 0x00002ae42705f878 in ?? ()
>>> #19 0x00002ae40ad334e0 in ?? ()
>>> #20 0x00002ae42705f8e0 in ?? ()
>>> #21 0x00002ae40ad33c68 in ?? ()
>>> #22 0x0000000000000000 in ?? ()
>>
>> Thanks,
>> Serguei
>>
>>>
>>>
>>>
>>> Leonid
>>>
>>>
>>>> On Oct 9, 2018, at 4:52 PM, serguei.spitsyn at oracle.com 
>>>> <mailto:serguei.spitsyn at oracle.com> wrote:
>>>>
>>>> Hi Leonid,
>>>>
>>>> There is an existing bug:
>>>> https://bugs.openjdk.java.net/browse/JDK-8043571
>>>>
>>>> Thanks,
>>>> Serguei
>>>>
>>>>
>>>> On 10/9/18 16:11, Leonid Mesnik wrote:
>>>>> Hi
>>>>>
>>>>> During fixing kitchensink I get
>>>>> assert(_cur_stack_depth == count_frames()) failed: cur_stack_depth 
>>>>> out of sync
>>>>>
>>>>> Do you know if i might be bug in my jvmti agent?
>>>>>
>>>>> Leonid
>>>>>
>>>>>
>>>>> #
>>>>> # A fatal error has been detected by the Java Runtime Environment:
>>>>> #
>>>>> #  Internal Error 
>>>>> (/scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiThreadState.cpp:277), 
>>>>> pid=13926, tid=13962
>>>>> #  assert(_cur_stack_depth == count_frames()) failed: 
>>>>> cur_stack_depth out of sync
>>>>> #
>>>>> # JRE version: Java(TM) SE Runtime Environment (12.0) (fastdebug 
>>>>> build 12-internal+0-2018-10-08-2342517.lmesnik.hs-bigapps)
>>>>> # Java VM: Java HotSpot(TM) 64-Bit Server VM (fastdebug 
>>>>> 12-internal+0-2018-10-08-2342517.lmesnik.hs-bigapps, mixed mode, 
>>>>> tiered, compressed oops, g1 gc, linux-amd64)
>>>>> # Core dump will be written. Default location: Core dumps may be 
>>>>> processed with "/usr/libexec/abrt-hook-ccpp %s %c %p %u %g %t e %P 
>>>>> %I %h" (or dumping to 
>>>>> /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/test-support/jtreg_closed_test_hotspot_jtreg_applications_kitchensink_KitchensinkSanity_java/scratch/0/core.13926)
>>>>> #
>>>>> # If you would like to submit a bug report, please visit:
>>>>> # http://bugreport.java.com/bugreport/crash.jsp
>>>>> #
>>>>>
>>>>> ---------------  S U M M A R Y ------------
>>>>>
>>>>> Command Line: -XX:MaxRAMPercentage=2 -XX:MaxRAMPercentage=50 
>>>>> -XX:+CrashOnOutOfMemoryError -Djava.net.preferIPv6Addresses=false 
>>>>> -XX:-PrintVMOptions -XX:+DisplayVMOutputToStderr -XX:+UsePerfData 
>>>>> -Xlog:gc*,gc+heap=debug:gc.log:uptime,timemillis,level,tags 
>>>>> -XX:+DisableExplicitGC -XX:+PrintFlagsFinal 
>>>>> -XX:+StartAttachListener -XX:NativeMemoryTracking=detail 
>>>>> -XX:+FlightRecorder --add-exports=java.base/java.lang=ALL-UNNAMED 
>>>>> --add-opens=java.base/java.lang=ALL-UNNAMED 
>>>>> --add-exports=java.xml/com.sun.org.apache.xerces.internal.parsers=ALL-UNNAMED 
>>>>> --add-exports=java.xml/com.sun.org.apache.xerces.internal.util=ALL-UNNAMED 
>>>>> -Djava.io.tmpdir=/scratch/lmesnik/ws/hs-bigapps/build/linux-x64/test-support/jtreg_closed_test_hotspot_jtreg_applications_kitchensink_KitchensinkSanity_java/scratch/0/java.io.tmpdir 
>>>>> -Duser.home=/scratch/lmesnik/ws/hs-bigapps/build/linux-x64/test-support/jtreg_closed_test_hotspot_jtreg_applications_kitchensink_KitchensinkSanity_java/scratch/0/user.home 
>>>>> -agentpath:/scratch/lmesnik/ws/hs-bigapps/build/linux-x64/images/test/hotspot/jtreg/native/libJvmtiStressModule.so 
>>>>> applications.kitchensink.process.stress.Main 
>>>>> /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/test-support/jtreg_closed_test_hotspot_jtreg_applications_kitchensink_KitchensinkSanity_java/scratch/0/kitchensink.final.properties
>>>>>
>>>>> Host: scaaa118.us.oracle.com <http://scaaa118.us.oracle.com>, 
>>>>> Intel(R) Xeon(R) CPU E5-2690 0 @ 2.90GHz, 32 cores, 235G, Oracle 
>>>>> Linux Server release 7.3
>>>>> Time: Tue Oct  9 16:06:07 2018 PDT elapsed time: 31 seconds (0d 0h 
>>>>> 0m 31s)
>>>>>
>>>>> ---------------  T H R E A D  ---------------
>>>>>
>>>>> Current thread (0x00002af3dc6ac800):  VMThread "VM Thread" [stack: 
>>>>> 0x00002af44f10a000,0x00002af44f20a000] [id=13962] 
>>>>> _threads_hazard_ptr=0x00002af4ac090eb0, 
>>>>> _nested_threads_hazard_ptr_cnt=0
>>>>>
>>>>> Stack: [0x00002af44f10a000,0x00002af44f20a000], 
>>>>>  sp=0x00002af44f208720,  free space=1017k
>>>>> Native frames: (J=compiled Java code, A=aot compiled Java code, 
>>>>> j=interpreted, Vv=VM code, C=native code)
>>>>> V  [libjvm.so+0x18c4923]  VMError::report_and_die(int, char 
>>>>> const*, char const*, __va_list_tag*, Thread*, unsigned char*, 
>>>>> void*, void*, char const*, int, unsigned long)+0x2c3
>>>>> V  [libjvm.so+0x18c56ef]  VMError::report_and_die(Thread*, void*, 
>>>>> char const*, int, char const*, char const*, __va_list_tag*)+0x2f
>>>>> V  [libjvm.so+0xb55aa0]  report_vm_error(char const*, int, char 
>>>>> const*, char const*, ...)+0x100
>>>>> V  [libjvm.so+0x11f2cfe]  JvmtiThreadState::cur_stack_depth()+0x14e
>>>>> V  [libjvm.so+0x11f3257] 
>>>>>  JvmtiThreadState::update_for_pop_top_frame()+0x27
>>>>> V  [libjvm.so+0x119af99]  VM_UpdateForPopTopFrame::doit()+0xb9
>>>>> V  [libjvm.so+0x1908982]  VM_Operation::evaluate()+0x132
>>>>> V  [libjvm.so+0x19040be] 
>>>>>  VMThread::evaluate_operation(VM_Operation*) [clone 
>>>>> .constprop.51]+0x18e
>>>>> V  [libjvm.so+0x1904960]  VMThread::loop()+0x4c0
>>>>> V  [libjvm.so+0x1904f53]  VMThread::run()+0xd3
>>>>> V  [libjvm.so+0x14e8300]  thread_native_entry(Thread*)+0x100
>>>>>
>>>>> VM_Operation (0x00002af4d8502910): UpdateForPopTopFrame, mode: 
>>>>> safepoint, requested by thread 0x00002af4dc008800
>>>>
>>>>
>>>
>>

-------------- next part --------------
[New LWP 29727]
[New LWP 29726]
[New LWP 29725]
[New LWP 29724]
[New LWP 29723]
[New LWP 29722]
[New LWP 29721]
[New LWP 29720]
[New LWP 29719]
[New LWP 29718]
[New LWP 29717]
[New LWP 29716]
[New LWP 29715]
[New LWP 29714]
[New LWP 29713]
[New LWP 29712]
[New LWP 29711]
[New LWP 29710]
[New LWP 29709]
[New LWP 29708]
[New LWP 29707]
[New LWP 29706]
[New LWP 29705]
[New LWP 29704]
[New LWP 29703]
[New LWP 29702]
[New LWP 29701]
[New LWP 29700]
[New LWP 29699]
[New LWP 29698]
[New LWP 29697]
[New LWP 29696]
[New LWP 29695]
[New LWP 29694]
[New LWP 29693]
[New LWP 29692]
[New LWP 29691]
[New LWP 29690]
[New LWP 29689]
[New LWP 29688]
[New LWP 29687]
[New LWP 29686]
[New LWP 29685]
[New LWP 29684]
[New LWP 29683]
[New LWP 29682]
[New LWP 29681]
[New LWP 29680]
[New LWP 29679]
[New LWP 29678]
[New LWP 29654]
[New LWP 29653]
[New LWP 29652]
[New LWP 29651]
[New LWP 29650]
[New LWP 29649]
[New LWP 29648]
[New LWP 29647]
[New LWP 29646]
[New LWP 29645]
[New LWP 29644]
[New LWP 29643]
[New LWP 29642]
[New LWP 29641]
[New LWP 29640]
[New LWP 29639]
[New LWP 29638]
[New LWP 29637]
[New LWP 29636]
[New LWP 29635]
[New LWP 29634]
[New LWP 29633]
[New LWP 29632]
[New LWP 29631]
[New LWP 29630]
[New LWP 29629]
[New LWP 29628]
[New LWP 29627]
[New LWP 29626]
[New LWP 29625]
[New LWP 29624]
[New LWP 29623]
[New LWP 29622]
[New LWP 29621]
[New LWP 29620]
[New LWP 29619]
[New LWP 29618]
[New LWP 29617]
[New LWP 29616]
[New LWP 29615]
[New LWP 29614]
[New LWP 29613]
[New LWP 29612]
[New LWP 29611]
[New LWP 29609]
[New LWP 29608]
[New LWP 29607]
[New LWP 29606]
[New LWP 29605]
[New LWP 29604]
[New LWP 29270]
[New LWP 29026]
[New LWP 29024]
[New LWP 28995]
[New LWP 28989]
[New LWP 28912]
[New LWP 28910]
[New LWP 28899]
[New LWP 28428]
[New LWP 28427]
[New LWP 28426]
[New LWP 28412]
[New LWP 28411]
[New LWP 28410]
[New LWP 28409]
[New LWP 28408]
[New LWP 28407]
[New LWP 28406]
[New LWP 28405]
[New LWP 28404]
[New LWP 28403]
[New LWP 28402]
[New LWP 28401]
[New LWP 28400]
[New LWP 28399]
[New LWP 28398]
[New LWP 28397]
[New LWP 28396]
[New LWP 28395]
[New LWP 28394]
[New LWP 28393]
[New LWP 28392]
[New LWP 28391]
[New LWP 28389]
[New LWP 28023]
[New LWP 28010]
[New LWP 28009]
[New LWP 28008]
[New LWP 28007]
[New LWP 28006]
[New LWP 28005]
[New LWP 28004]
[New LWP 28003]
[New LWP 28002]
[New LWP 28001]
[New LWP 28000]
[New LWP 27999]
[New LWP 27998]
[New LWP 27997]
[New LWP 27996]
[New LWP 27995]
[New LWP 27994]
[New LWP 27983]
[New LWP 27982]
[New LWP 27981]
[New LWP 27966]
[New LWP 27963]
[New LWP 27962]
[New LWP 27961]
[New LWP 27960]
[New LWP 27951]
[New LWP 27950]
[New LWP 27948]
[New LWP 27934]
[New LWP 27933]
[New LWP 27932]
[New LWP 27931]
[New LWP 27930]
[New LWP 27916]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
0x00002ae3927b2f57 in pthread_join () from /lib64/libpthread.so.0

Thread 170 (Thread 0x2ae3922b0700 (LWP 27916)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae398029c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae41c008f00, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae398028800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae398028800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae3922af800, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00000000985e6001 in ?? ()
#7  0x00002ae398028800 in ?? ()
#8  0x0000000000000000 in ?? ()

Thread 169 (Thread 0x2ae3969e2700 (LWP 27930)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae39805d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae39805d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae39805d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 168 (Thread 0x2ae3b3b89700 (LWP 27931)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3980d3500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3980d3500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398020710, Self=Self at entry=0x2ae3980d2000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x2ae398020710, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393719ce4 in sleep_before_next_cycle (this=0x2ae3980d2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp:416
#6  G1ConcurrentMarkThread::run_service (this=0x2ae3980d2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1ConcurrentMarkThread.cpp:256
#7  0x00002ae3935eb8da in ConcurrentGCThread::run (this=0x2ae3980d2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/concurrentGCThread.cpp:81
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3980d2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 167 (Thread 0x2ae3b3c8a700 (LWP 27932)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae3980d3f98) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae3980d3ef0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae3980d4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae3980d4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3980d4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 166 (Thread 0x2ae40a807700 (LWP 27933)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae398458400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae398458400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398021210, Self=Self at entry=0x2ae398457000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x2ae398021210, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae39371cc1a in wait_for_completed_buffers (this=0x2ae398457000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1ConcurrentRefineThread.cpp:63
#6  G1ConcurrentRefineThread::run_service (this=0x2ae398457000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1ConcurrentRefineThread.cpp:98
#7  0x00002ae3935eb8da in ConcurrentGCThread::run (this=0x2ae398457000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/concurrentGCThread.cpp:81
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae398457000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 165 (Thread 0x2ae40a908700 (LWP 27934)):
#0  0x00002ae3927b5cf2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8efe in os::PlatformEvent::park (this=this at entry=0x2ae39845a600, millis=millis at entry=300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1947
#2  0x00002ae393b50c4b in ParkCommon (timo=300, ev=0x2ae39845a600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:401
#3  Monitor::IWait (this=this at entry=0x2ae398459318, Self=Self at entry=0x2ae398459000, timo=timo at entry=300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=this at entry=0x2ae398459318, no_safepoint_check=no_safepoint_check at entry=true, timeout=300, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393764317 in sleep_before_next_cycle (this=0x2ae398459000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp:49
#6  G1YoungRemSetSamplingThread::run_service (this=0x2ae398459000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1YoungRemSetSamplingThread.cpp:65
#7  0x00002ae3935eb8da in ConcurrentGCThread::run (this=0x2ae398459000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/concurrentGCThread.cpp:81
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae398459000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 164 (Thread 0x2ae40b28a700 (LWP 27948)):
#0  0x00002ae3937ac6aa in thread_at (i=<optimized out>, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.hpp:188
#1  next (this=0x2ae40b289a70) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.hpp:365
#2  VM_HandshakeAllThreads::doit (this=0x2ae40b990c60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/handshake.cpp:214
#3  0x00002ae393dea578 in VM_Operation::evaluate (this=this at entry=0x2ae40b990c60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vm_operations.cpp:67
#4  0x00002ae393de7e0f in VMThread::evaluate_operation (op=0x2ae40b990c60, this=0x2ae40b990c60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:370
#5  0x00002ae393de853a in VMThread::loop (this=this at entry=0x2ae3984b5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:552
#6  0x00002ae393de871b in VMThread::run (this=0x2ae3984b5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:267
#7  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984b5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#8  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#9  0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 163 (Thread 0x2ae40b38b700 (LWP 27950)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3984ba700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3984ba700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398024710, Self=Self at entry=0x2ae3984b9000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398024710, no_safepoint_check=no_safepoint_check at entry=false, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae3938c9c9e in wait (as_suspend_equivalent=false, timeout=0, no_safepoint_check=false, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:268
#6  JVM_WaitForReferencePendingList (env=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:3318
#7  0x00002ae3a43ef257 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae40b38a8c8 in ?? ()
#10 0x000000080052c590 in ?? ()
#11 0x00002ae40b38a928 in ?? ()
#12 0x000000080000ad20 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 162 (Thread 0x2ae40b48c700 (LWP 27951)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae3984bcb00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae41c002e00, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae3984bb800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae3984bb800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae40b48b880, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae40b48b850 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae40b48b808 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae40b48b880 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 161 (Thread 0x2ae40b58d700 (LWP 27960)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae398018ff8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393b99aa5 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  check_pending_signals () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:2519
#6  os::signal_wait () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:2537
#7  0x00002ae393b8dfce in signal_thread_entry (thread=<optimized out>, __the_thread__=0x2ae3984c2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/os.cpp:353
#8  0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae3984c2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#9  0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984c2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#10 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984c2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#11 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#12 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 160 (Thread 0x2ae40b68e700 (LWP 27961)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3984c5f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3984c5f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae3984c4800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=0x2ae40b68db40) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae393b09a00 in metaspace::MetaspaceDCmd::execute (this=0x2ae3984c5050, source=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/memory/metaspace/metaspaceDCmd.cpp:99
#7  0x00002ae3936b10dd in DCmd::parse_and_execute (source=source at entry=DCmd_Source_AttachAPI, out=out at entry=0x2ae40b68dce0, cmdline=cmdline at entry=0x2ae42c000b99 "VM.metaspace", delim=delim at entry=32 ' ', __the_thread__=__the_thread__ at entry=0x2ae3984c4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/services/diagnosticFramework.cpp:409
#8  0x00002ae3933e413f in jcmd (op=0x2ae42c000b80, out=0x2ae40b68dce0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/services/attachListener.cpp:204
#9  0x00002ae3933e50f1 in attach_listener_thread_entry (thread=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/services/attachListener.cpp:391
#10 0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae3984c4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984c4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984c4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#14 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 159 (Thread 0x2ae40b78f700 (LWP 27962)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3984c9100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3984c9100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae3984c7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3984c7800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae39350510c in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  ciEnv::cache_jvmti_state (this=this at entry=0x2ae40b78eb30) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/ci/ciEnv.cpp:229
#8  0x00002ae3935d3294 in CompileBroker::invoke_compiler_on_method (task=task at entry=0x2ae48800ff40) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:2084
#9  0x00002ae3935d4f48 in CompileBroker::compiler_thread_loop () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:1798
#10 0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae3984c7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984c7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984c7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#14 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 158 (Thread 0x2ae40b890700 (LWP 27963)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3984cbb00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3984cbb00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae3984ca800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3984ca800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae39350510c in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  ciEnv::cache_jvmti_state (this=this at entry=0x2ae40b88fb30) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/ci/ciEnv.cpp:229
#8  0x00002ae3935d3294 in CompileBroker::invoke_compiler_on_method (task=task at entry=0x2ae49c00a670) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:2084
#9  0x00002ae3935d4f48 in CompileBroker::compiler_thread_loop () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/compiler/compileBroker.cpp:1798
#10 0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae3984ca800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984ca800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984ca800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#14 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 157 (Thread 0x2ae40b991700 (LWP 27966)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3984d6500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3984d6500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae3984d5000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=op at entry=0x2ae40b990c60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae3937ab5e8 in Handshake::execute (thread_cl=thread_cl at entry=0x2ae40b990cd0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/handshake.cpp:275
#7  0x00002ae393d0600c in do_stack_scanning () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/sweeper.cpp:332
#8  NMethodSweeper::possibly_sweep () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/sweeper.cpp:455
#9  0x00002ae393d062ed in NMethodSweeper::sweeper_loop () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/sweeper.cpp:351
#10 0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae3984d5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#11 0x00002ae393d736c6 in JavaThread::run (this=0x2ae3984d5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#12 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae3984d5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#13 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#14 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 156 (Thread 0x2ae40bc94700 (LWP 27981)):
#0  0x00002ae3927b5cf2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8efe in os::PlatformEvent::park (this=0x2ae39851b000, millis=millis at entry=60000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1947
#2  0x00002ae393b76103 in ObjectMonitor::wait (this=this at entry=0x2ae41c004a00, millis=millis at entry=60000, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae39851a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1273
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=60000, __the_thread__=__the_thread__ at entry=0x2ae39851a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae40bc937b0, ms=60000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3ac023b7b in ?? ()
#6  0x0000000082008d28 in ?? ()
#7  0x00002ae3ac025a7f in ?? ()
#8  0x00002ae40bc93818 in ?? ()
#9  0x0000000000000094 in ?? ()
#10 0x0000000000000000 in ?? ()

Thread 155 (Thread 0x2ae40bd95700 (LWP 27982)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae39851fd00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae39851fd00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398022510, Self=Self at entry=0x2ae39851e800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x2ae398022510, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393c7376c in ServiceThread::service_thread_entry (jt=0x2ae39851e800, __the_thread__=0x2ae39851e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/serviceThread.cpp:120
#6  0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae39851e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#7  0x00002ae393d736c6 in JavaThread::run (this=0x2ae39851e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae39851e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 154 (Thread 0x2ae40be96700 (LWP 27983)):
#0  0x00002ae3927b5cf2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8efe in os::PlatformEvent::park (this=this at entry=0x2ae398523a00, millis=millis at entry=50) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1947
#2  0x00002ae393b50c4b in ParkCommon (timo=50, ev=0x2ae398523a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:401
#3  Monitor::IWait (this=this at entry=0x2ae398025810, Self=Self at entry=0x2ae398523000, timo=timo at entry=50) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x2ae398025810, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=50, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d69a03 in WatcherThread::sleep (this=this at entry=0x2ae398523000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1340
#6  0x00002ae393d6f0d1 in WatcherThread::run (this=0x2ae398523000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1386
#7  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae398523000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#8  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#9  0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 153 (Thread 0x2ae40bf97700 (LWP 27994)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985e5600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985e5600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985e4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985e4800, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=262144) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae40bf964a0, desired_word_size=262144, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=262144, actual_size=0x2ae40bf964a0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae40bf964f0, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae40bf964f0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae40bf964f0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae40bf964f0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=<optimized out>, __the_thread__=0x2ae3985e4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae3938a127a in jni_NewObject (env=0x2ae3985e4b30, clazz=0x2ae3984bf2c8, methodID=0x2ae3985343c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jni.cpp:1274
#17 0x00002ae42674b31a in NET_SockaddrToInetAddress (env=env at entry=0x2ae3985e4b30, sa=sa at entry=0x2ae40bf96760, port=port at entry=0x2ae40bf96758) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libnet/net_util.c:216
#18 0x00002ae426747f36 in Java_java_net_PlainSocketImpl_socketAccept (env=0x2ae3985e4b30, this=0x2ae40bf96848, socket=0x2ae40bf96840) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/unix/native/libnet/PlainSocketImpl.c:715
#19 0x00002ae3a43ef257 in ?? ()
#20 0x00002ae40bf96820 in ?? ()
#21 0x00002ae3a43eecbe in ?? ()
#22 0x00002ae3a43eec76 in ?? ()
#23 0x00002ae40bf967d8 in ?? ()
#24 0x00002ae40aa952e8 in ?? ()
#25 0x00002ae40bf96848 in ?? ()
#26 0x00002ae40aa9d1c8 in ?? ()
#27 0x0000000000000000 in ?? ()

Thread 152 (Thread 0x2ae427060700 (LWP 27995)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985e7400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3985e7400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae3985e6000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=0x2ae42705f500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae3939965f3 in JvmtiEnvThreadState::reset_current_location (this=this at entry=0x2ae6bc000d80, event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, enabled=enabled at entry=true) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEnvThreadState.cpp:312
#7  0x00002ae393997acf in recompute_env_thread_enabled (state=0x2ae6bc000cd0, ets=0x2ae6bc000d80) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:490
#8  JvmtiEventControllerPrivate::recompute_thread_enabled (state=state at entry=0x2ae6bc000cd0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:523
#9  0x00002ae393998168 in JvmtiEventControllerPrivate::recompute_enabled () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:598
#10 0x00002ae39399a244 in set_user_enabled (enabled=true, event_type=JVMTI_EVENT_SINGLE_STEP, thread=0x0, env=0x2ae39801b270) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:818
#11 JvmtiEventController::set_user_enabled (env=0x2ae39801b270, thread=0x0, event_type=JVMTI_EVENT_SINGLE_STEP, enabled=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:963
#12 0x00002ae393987d2d in JvmtiEnv::SetEventNotificationMode (this=this at entry=0x2ae39801b270, mode=mode at entry=JVMTI_ENABLE, event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, event_thread=event_thread at entry=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEnv.cpp:543
#13 0x00002ae3939414eb in jvmti_SetEventNotificationMode (env=0x2ae39801b270, mode=mode at entry=JVMTI_ENABLE, event_type=event_type at entry=JVMTI_EVENT_SINGLE_STEP, event_thread=event_thread at entry=0x0) at /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp:5389
#14 0x00002ae394d97989 in enable_events () at /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJvmtiStressModule.c:519
#15 0x00002ae394d98070 in Java_applications_kitchensink_process_stress_modules_JvmtiStressModule_startIteration (env=<optimized out>, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJvmtiStressModule.c:697
#16 0x00002ae3a43ef257 in ?? ()
#17 0x00002ae3a43eede1 in ?? ()
#18 0x00002ae42705f878 in ?? ()
#19 0x00002ae40ad334e0 in ?? ()
#20 0x00002ae42705f8e0 in ?? ()
#21 0x00002ae40ad33c68 in ?? ()
#22 0x0000000000000000 in ?? ()

Thread 151 (Thread 0x2ae427161700 (LWP 27996)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985e9200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985e9200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985e8000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985e8000, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=262144) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae42715e830, desired_word_size=262144, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=262144, actual_size=0x2ae42715e830) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae42715e880, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae42715e880) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae42715e880) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae42715e880) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae3935985e4 in CollectedHeap::array_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, length=<optimized out>, do_zero=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:471
#15 0x00002ae39382e1f8 in allocate (__the_thread__=0x2ae3985e8000, length=32, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/typeArrayKlass.hpp:69
#16 new_intArray (__the_thread__=0x2ae3985e8000, length=32) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/memory/oopFactory.hpp:50
#17 BacktraceBuilder::expand (this=this at entry=0x2ae42715ea50, __the_thread__=__the_thread__ at entry=0x2ae3985e8000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:2048
#18 0x00002ae39382e3e5 in BacktraceBuilder::BacktraceBuilder (this=0x2ae42715ea50, __the_thread__=0x2ae3985e8000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:2017
#19 0x00002ae39382b606 in java_lang_Throwable::fill_in_stack_trace (throwable=..., throwable at entry=..., method=..., __the_thread__=0x2ae3985e8000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:2323
#20 0x00002ae39382bf63 in java_lang_Throwable::fill_in_stack_trace (throwable=..., method=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:2460
#21 0x00002ae3938c70bd in JVM_FillInStackTrace (env=<optimized out>, receiver=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:515
#22 0x00002ae394b7f9c1 in Java_java_lang_Throwable_fillInStackTrace (env=<optimized out>, throwable=0x2ae42715fdd0, dummy=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libjava/Throwable.c:49
#23 0x00002ae3ac003b7b in ?? ()
#24 0x00000000b5e00500 in ?? ()
#25 0x00002ae42715fe10 in ?? ()
#26 0x00002ae42715fe28 in ?? ()
#27 0x00002ae3937ee6a3 in InstanceKlass::find_method_index (methods=0x2ae42715fec8, name=0x2ae42715fe10, signature=0x2ae3985e8000, overpass_mode=(unknown: 10980), private_mode=Klass::find_private, static_mode=Klass::find_static) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1699
#28 0x00002ae3ac0171ec in ?? ()
#29 0x00000000b5e00500 in ?? ()
#30 0x00002ae42715fe60 in ?? ()
#31 0x00002ae3937eea68 in find_method_impl (private_mode=(unknown: 5024064), static_mode=Klass::find_static, overpass_mode=<optimized out>, signature=0x1985e8000, name=0x80036a2f0, methods=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1656
#32 find_method_impl (private_mode=(unknown: 5024064), static_mode=Klass::find_static, overpass_mode=<optimized out>, signature=0x1985e8000, name=0x80036a2f0, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1574
#33 InstanceKlass::uncached_lookup_method (this=<error reading variable: Cannot access memory at address 0xf>, name=0x80036a2f0, signature=0x1985e8000, overpass_mode=<optimized out>, private_mode=(unknown: 5024064)) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1769

Thread 150 (Thread 0x2ae427262700 (LWP 27997)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985ea000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985ea000, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=118636) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae427261840, desired_word_size=118636, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=118636, actual_size=0x2ae427261840) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae427261890, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae427261890) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae427261890) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae427261890) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=this at entry=0x800003478, __the_thread__=__the_thread__ at entry=0x2ae3985ea000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae393c62c0c in OptoRuntime::new_instance_C (klass=0x800003478, thread=0x2ae3985ea000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/opto/runtime.cpp:215
#17 0x00002ae3a44e08a5 in ?? ()
#18 0x00000000e7967920 in ?? ()
#19 0x00002ae3ac01cf94 in ?? ()
#20 0x00000008000003e8 in ?? ()
#21 0x0000000800003478 in ?? ()
#22 0x0000000000014523 in ?? ()
#23 0x0000000000000007 in ?? ()
#24 0x00000000820025c0 in ?? ()
#25 0x0000000101b8f888 in ?? ()
#26 0x00000166949a8e5f in ?? ()
#27 0x0000000101b8f888 in ?? ()
#28 0x0000000000000003 in ?? ()
#29 0xdeaddeaf00000000 in ?? ()
#30 0x00002ae4272619e0 in ?? ()
#31 0x00002ae3a43e5d28 in ?? ()
#32 0x00000000820025c0 in ?? ()
#33 0x00002ae427261998 in ?? ()
#34 0x00002ae40ad30cd8 in ?? ()
#35 0x00002ae427261a08 in ?? ()
#36 0x00002ae40ad31c60 in ?? ()
#37 0x0000000000000000 in ?? ()

Thread 149 (Thread 0x2ae427363700 (LWP 27998)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985ece00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985ece00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398025110, Self=0x2ae3985ec000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b50fe1 in Monitor::lock (this=this at entry=0x2ae398025110, Self=Self at entry=0x2ae3985ec000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  0x00002ae393d20a50 in MutexLocker (thread=0x2ae3985ec000, mutex=0x2ae398025110, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:190
#6  SystemDictionary::parse_stream (class_name=class_name at entry=0x0, class_loader=..., protection_domain=..., st=st at entry=0x2ae427361410, unsafe_anonymous_host=unsafe_anonymous_host at entry=0x8003a1628, cp_patches=cp_patches at entry=0x2ae434000bb0, __the_thread__=0x2ae3985ec000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1034
#7  0x00002ae393da4887 in Unsafe_DefineAnonymousClass_impl (env=0x2ae3985ec330, __the_thread__=0x2ae3985ec000, temp_alloc=<synthetic pointer>, cp_patches_jh=<optimized out>, data=<optimized out>, host_class=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/unsafe.cpp:822
#8  Unsafe_DefineAnonymousClass0 (env=0x2ae3985ec330, unsafe=<optimized out>, host_class=<optimized out>, data=<optimized out>, cp_patches_jh=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/unsafe.cpp:836
#9  0x00002ae3a43ef257 in ?? ()
#10 0x00002ae427361490 in ?? ()
#11 0x00002ae3985ec000 in ?? ()
#12 0x00002ae4273614b0 in ?? ()
#13 0x00002ae3938c7e65 in trans_and_fence (to=_thread_in_native, from=_thread_in_vm, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/interfaceSupport.inline.hpp:178
#14 ~ThreadInVMfromNative (this=<synthetic pointer>, __in_chrg=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/interfaceSupport.inline.hpp:262
#15 JVM_IsPrimitiveClass (env=<optimized out>, cls=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:1415
#16 0x00002ae3a43e58c8 in ?? ()
#17 0x0000000000000000 in ?? ()

Thread 148 (Thread 0x2ae427464700 (LWP 27999)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae3985eec00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae48c005c80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae3985ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae3985ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427463850, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427463820 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae4274637d8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427463850 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 147 (Thread 0x2ae427565700 (LWP 28000)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985f1200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985f1200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985f0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985f0000, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=262144) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae4275642d0, desired_word_size=262144, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=262144, actual_size=0x2ae4275642d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae427564320, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae427564320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae427564320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae427564320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=this at entry=0x80032dd68, __the_thread__=__the_thread__ at entry=0x2ae3985f0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae3934c9416 in Runtime1::new_instance (thread=0x2ae3985f0000, klass=0x80032dd68) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/c1/c1_Runtime1.cpp:356
#17 0x00002ae3a44d91e0 in ?? ()
#18 0x00002ae3927b4eae in _L_unlock_713 () from /lib64/libpthread.so.0
#19 0x00002ae3927b4e20 in pthread_mutex_unlock () from /lib64/libpthread.so.0
#20 0x0000000000000000 in ?? ()

Thread 146 (Thread 0x2ae427666700 (LWP 28001)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985f3400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3985f3400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae3985f2f60, Self=Self at entry=0x2ae3985f2000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x2ae3985f2f60, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d70825 in java_suspend_self (this=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:2378
#6  JavaThread::handle_special_runtime_exit_condition (this=0x2ae3985f2000, check_asyncs=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:2225
#7  0x00002ae393c65dc0 in SafepointSynchronize::block (thread=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/safepoint.cpp:934
#8  0x00002ae393d6a7dd in block_if_requested_local_poll (thread=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/safepointMechanism.inline.hpp:63
#9  block_if_requested (thread=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/safepointMechanism.inline.hpp:73
#10 JavaThread::check_safepoint_and_suspend_for_native_trans (thread=thread at entry=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:2441
#11 0x00002ae3939a9b01 in transition_from_native (to=_thread_in_vm, thread=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/interfaceSupport.inline.hpp:166
#12 trans_from_native (to=_thread_in_vm, this=0x2ae4276653d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/interfaceSupport.inline.hpp:177
#13 ~ThreadToNativeFromVM (this=0x2ae4276653d0, __in_chrg=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/interfaceSupport.inline.hpp:280
#14 JvmtiJavaThreadEventTransition::~JvmtiJavaThreadEventTransition (this=0x2ae4276653a0, __in_chrg=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:80
#15 0x00002ae3939a0088 in JvmtiExport::post_method_entry (thread=thread at entry=0x2ae3985f2000, method=<optimized out>, current_frame=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1519
#16 0x00002ae393819195 in InterpreterRuntime::post_method_entry (thread=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/interpreterRuntime.cpp:1309
#17 0x00002ae3a43ed891 in ?? ()
#18 0x00002ae3a43ed84c in ?? ()
#19 0x00002ae427665518 in ?? ()
#20 0x0000000800521d58 in ?? ()
#21 0x00002ae427665570 in ?? ()
#22 0x0000000800003748 in ?? ()
#23 0x00002ae40a911c28 in ?? ()
#24 0x00000007ffb2e0b8 in ?? ()
#25 0x0000000800004320 in ?? ()
#26 0x0000000000000000 in ?? ()

Thread 145 (Thread 0x2ae427767700 (LWP 28002)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985f5600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae3985f5600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae3985f4000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=0x2ae427764d30) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae39358840a in CodeCache::flush_dependents_on (dependee=dependee at entry=0x840186e60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/code/codeCache.cpp:1270
#7  0x00002ae393d21253 in add_to_hierarchy (__the_thread__=0x2ae3985f4000, k=0x840186e60) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1846
#8  SystemDictionary::define_instance_class (k=k at entry=0x840186e60, __the_thread__=__the_thread__ at entry=0x2ae3985f4000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1638
#9  0x00002ae393d219ec in SystemDictionary::resolve_from_stream (class_name=class_name at entry=0x2ae47006ea60, class_loader=..., protection_domain=..., st=st at entry=0x2ae427765030, __the_thread__=__the_thread__ at entry=0x2ae3985f4000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1144
#10 0x00002ae3938cfea0 in jvm_define_class_common (env=env at entry=0x2ae3985f4330, name=name at entry=0x2ae427765180 "spec/jbb/SaveOutput", loader=loader at entry=0x2ae427765710, buf=buf at entry=0x2ae4702230d0 "\312\376\272\276", len=len at entry=1945, pd=pd at entry=0x2ae4277656e8, source=0x2ae393eb8ebe "__JVM_DefineClass__", __the_thread__=0x2ae3985f4000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:935
#11 0x00002ae3938d00ff in JVM_DefineClassWithSource (env=0x2ae3985f4330, name=<optimized out>, loader=0x2ae427765710, buf=0x2ae4702230d0 "\312\376\272\276", len=1945, pd=<optimized out>, source=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:955
#12 0x00002ae394b77663 in Java_java_lang_ClassLoader_defineClass1 (env=0x2ae3985f4330, cls=<optimized out>, loader=0x2ae427765710, name=0x2ae427765708, data=<optimized out>, offset=<optimized out>, length=1945, pd=0x2ae4277656e8, source=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libjava/ClassLoader.c:136
#13 0x00002ae3a43ef257 in ?? ()
#14 0x00002ae400000799 in ?? ()
#15 0x00002ae4277656e8 in ?? ()
#16 0x0000000000000000 in ?? ()

Thread 144 (Thread 0x2ae427868700 (LWP 28003)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae3985f7500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae480005d80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae3985f6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae3985f6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427866fd0, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427866fa0 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae427866f58 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427866fd0 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 143 (Thread 0x2ae427969700 (LWP 28004)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae3985f9300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae47807e000, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae3985f8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae3985f8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427967fd0, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427967fa0 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae427967f58 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427967fd0 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 142 (Thread 0x2ae427a6a700 (LWP 28005)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985fb900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985fb900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985fa800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985fa800, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=262144) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae427a692d0, desired_word_size=262144, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=262144, actual_size=0x2ae427a692d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae427a69320, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae427a69320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae427a69320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae427a69320) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=this at entry=0x80032dd68, __the_thread__=__the_thread__ at entry=0x2ae3985fa800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae3934c9416 in Runtime1::new_instance (thread=0x2ae3985fa800, klass=0x80032dd68) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/c1/c1_Runtime1.cpp:356
#17 0x00002ae3a44d91e0 in ?? ()
#18 0x00002ae394422bec in os::_initial_active_processor_count () from /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/images/jdk/lib/server/libjvm.so
#19 0x000000000000000c in ?? ()
#20 0x0000000000000018 in ?? ()
#21 0x000000000000000c in ?? ()
#22 0x00000000823e8888 in ?? ()
#23 0x000000000000000c in ?? ()
#24 0x287065656c732e64 in ?? ()
#25 0x0000000000000000 in ?? ()

Thread 141 (Thread 0x2ae427b6b700 (LWP 28006)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae3985fdb00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae3985fdb00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae3985fc800, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=262144) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae427b6a190, desired_word_size=262144, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=262144, actual_size=0x2ae427b6a190) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae427b6a1e0, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae427b6a1e0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae427b6a1e0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae427b6a1e0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=<optimized out>, __the_thread__=__the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae393821239 in java_lang_String::basic_create (length=length at entry=15, is_latin1=<optimized out>, __the_thread__=__the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:229
#17 0x00002ae39382146b in java_lang_String::create_from_unicode (unicode=unicode at entry=0x2ae3985fd000, length=length at entry=15, __the_thread__=__the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/javaClasses.cpp:247
#18 0x00002ae393cb5795 in StringTable::do_intern (this=0x2ae398493890, string_or_null_h=..., string_or_null_h at entry=..., name=0x2ae3985fd000, len=15, hash=3215636097, __the_thread__=0x2ae3985fc800, __the_thread__ at entry=0xd8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/stringTable.cpp:370
#19 0x00002ae393cb59c6 in StringTable::intern (string_or_null_h=..., string_or_null_h at entry=..., name=<optimized out>, len=<optimized out>, __the_thread__=0xd8, __the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/stringTable.cpp:335
#20 0x00002ae393cb5a41 in StringTable::intern (symbol=<optimized out>, __the_thread__=__the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/stringTable.cpp:298
#21 0x00002ae39361848b in ConstantPool::string_at_impl (this_cp=..., which=<optimized out>, obj_index=<optimized out>, __the_thread__=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/constantPool.cpp:1272
#22 0x00002ae39361e4f8 in ConstantPool::resolve_constant_at_impl (this_cp=..., index=18, cache_index=1, status_return=0x0, __the_thread__=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/constantPool.cpp:986
#23 0x00002ae3934198bc in resolve_constant_at (__the_thread__=<optimized out>, index=<optimized out>, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/constantPool.hpp:730
#24 Bytecode_loadconstant::resolve_constant (this=this at entry=0x2ae427b6a720, __the_thread__=__the_thread__ at entry=0x2ae3985fc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/bytecode.cpp:228
#25 0x00002ae393810411 in InterpreterRuntime::resolve_ldc (thread=0x2ae3985fc800, bytecode=Bytecodes::_fast_aldc) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/interpreterRuntime.cpp:200
#26 0x00002ae3a440bbbb in ?? ()
#27 0x00002ae3a440bb76 in ?? ()
#28 0x00000000e239e128 in ?? ()
#29 0x00002ae427b6a7f0 in ?? ()
#30 0x00002ae40aa7d53c in ?? ()
#31 0x00002ae427b6a848 in ?? ()
#32 0x00002ae40acd3c70 in ?? ()
#33 0x0000000000000000 in ?? ()

Thread 140 (Thread 0x2ae427c6c700 (LWP 28007)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae3985ffa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae480007e80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae3985fe800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae3985fe800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427c6b850, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427c6b820 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae427c6b7d8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427c6b850 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 139 (Thread 0x2ae427d6d700 (LWP 28008)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae398601f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae398601f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae398600800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=op at entry=0x2ae427d6c540) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae3937059c9 in do_collection_pause (gc_cause=GCCause::_g1_inc_collection_pause, succeeded=<synthetic pointer>, gc_count_before=<optimized out>, word_size=502, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:2533
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=502) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:459
#8  0x00002ae393705e23 in attempt_allocation (actual_word_size=<synthetic pointer>, desired_word_size=502, min_word_size=502, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::mem_allocate (this=0x2ae39804f9c0, word_size=502, gc_overhead_limit_was_exceeded=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:407
#10 0x00002ae393ae4504 in allocate_outside_tlab (allocation=..., this=0x2ae427d6c6d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:256
#11 mem_allocate (allocation=..., this=0x2ae427d6c6d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:354
#12 MemAllocator::allocate (this=this at entry=0x2ae427d6c6d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#13 0x00002ae3935985e4 in CollectedHeap::array_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, length=<optimized out>, do_zero=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:471
#14 0x00002ae39389fc85 in jni_NewObjectArray (env=0x2ae398600b30, length=1000, elementClass=<optimized out>, initialElement=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jni.cpp:2589
#15 0x00002ae494102ccb in Java_applications_kitchensink_process_stress_modules_JniStressModule_newObjectArray (env=<optimized out>, this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJniStressModule.c:357
#16 0x00002ae3ac00cc81 in ?? ()
#17 0x0000000082009538 in ?? ()
#18 0x0000000082072808 in ?? ()
#19 0x00000000b57ffa00 in ?? ()
#20 0x00000000000000b6 in ?? ()
#21 0x0000000000000000 in ?? ()

Thread 138 (Thread 0x2ae427e6e700 (LWP 28009)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae398603e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae48c002a80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae398603000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae398603000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427e6d850, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427e6d820 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae427e6d7d8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427e6d850 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 137 (Thread 0x2ae427f6f700 (LWP 28010)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae398606000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae480007d80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae398605000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae398605000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae427f6e850, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae427f6e820 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae427f6e7d8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae427f6e850 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 136 (Thread 0x2ae494100700 (LWP 28023)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae454005800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae454005800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae454004800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=op at entry=0x2ae4940ffb10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae393d6a3bd in JavaThread::java_suspend (this=this at entry=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:2321
#7  0x00002ae3939ad7e1 in JvmtiSuspendControl::suspend (java_thread=java_thread at entry=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:847
#8  0x00002ae3939887ae in JvmtiEnv::SuspendThread (this=this at entry=0x2ae39801b270, java_thread=0x2ae3985f2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEnv.cpp:955
#9  0x00002ae39393a8c6 in jvmti_SuspendThread (env=0x2ae39801b270, thread=0x2ae49929fdf8) at /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/hotspot/variant-server/gensrc/jvmtifiles/jvmtiEnter.cpp:527
#10 0x00002ae394d973ee in agent_sampler (jvmti=0x2ae39801b270, env=<optimized out>, p=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/closed/test/hotspot/jtreg/applications/kitchensink/process/stress/modules/libJvmtiStressModule.c:274
#11 0x00002ae3939ab24d in call_start_function (this=0x2ae454004800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:85
#12 JvmtiAgentThread::start_function_wrapper (thread=0x2ae454004800, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiImpl.cpp:79
#13 0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae454004800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#14 0x00002ae393d736c6 in JavaThread::run (this=0x2ae454004800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#15 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae454004800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#16 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#17 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 135 (Thread 0x2ae40bb93700 (LWP 28389)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434098500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434098500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398025a10, Self=Self at entry=0x2ae480050800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=0x2ae398025a10, no_safepoint_check=no_safepoint_check at entry=false, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393862623 in recorderthread_entry (thread=<optimized out>, unused=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/recorder/service/jfrRecorderThreadLoop.cpp:58
#6  0x00002ae393d7338a in JavaThread::thread_main_inner (this=this at entry=0x2ae480050800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1795
#7  0x00002ae393d736c6 in JavaThread::run (this=0x2ae480050800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae480050800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 134 (Thread 0x2ae40ba92700 (LWP 28391)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41400a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41400a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41400a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 133 (Thread 0x2ae56478d700 (LWP 28392)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414002800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414002800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414002800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 132 (Thread 0x2ae56488e700 (LWP 28393)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414003800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414003800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414003800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 131 (Thread 0x2ae56498f700 (LWP 28394)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414005000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414005000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414005000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 130 (Thread 0x2ae564a90700 (LWP 28395)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414006800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414006800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414006800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 129 (Thread 0x2ae564b91700 (LWP 28396)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414008800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414008800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414008800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 128 (Thread 0x2ae564c92700 (LWP 28397)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41400b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41400b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41400b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 127 (Thread 0x2ae564d93700 (LWP 28398)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41400d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41400d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41400d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 126 (Thread 0x2ae564e94700 (LWP 28399)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41400f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41400f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41400f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 125 (Thread 0x2ae564f95700 (LWP 28400)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414011000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414011000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414011000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 124 (Thread 0x2ae565096700 (LWP 28401)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414013000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414013000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414013000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 123 (Thread 0x2ae565197700 (LWP 28402)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41415b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41415b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41415b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 122 (Thread 0x2ae565298700 (LWP 28403)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41415d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41415d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41415d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 121 (Thread 0x2ae565399700 (LWP 28404)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41415f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41415f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41415f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 120 (Thread 0x2ae56549a700 (LWP 28405)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414161800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414161800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414161800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 119 (Thread 0x2ae56559b700 (LWP 28406)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414131000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414131000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414131000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 118 (Thread 0x2ae56569c700 (LWP 28407)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414132800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414132800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414132800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 117 (Thread 0x2ae56579d700 (LWP 28408)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414134800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414134800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414134800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 116 (Thread 0x2ae56589e700 (LWP 28409)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414136800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414136800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414136800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 115 (Thread 0x2ae56599f700 (LWP 28410)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae414138800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae414138800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae414138800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 114 (Thread 0x2ae565aa0700 (LWP 28411)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41413a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41413a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41413a800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 113 (Thread 0x2ae565ba1700 (LWP 28412)):
#0  0x00002ae3927b7a0b in do_futex_wait.constprop.1 () from /lib64/libpthread.so.0
#1  0x00002ae3927b7a9f in __new_sem_wait_slow.constprop.0 () from /lib64/libpthread.so.0
#2  0x00002ae3927b7b3b in sem_wait@@GLIBC_2.2.5 () from /lib64/libpthread.so.0
#3  0x00002ae393c72b62 in PosixSemaphore::wait (this=0x2ae39805d2e8) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/semaphore_posix.cpp:64
#4  0x00002ae393e0ccc9 in wait (this=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/semaphore.hpp:56
#5  SemaphoreGangTaskDispatcher::worker_wait_for_task (this=0x2ae39805d240) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:158
#6  0x00002ae393e0bae1 in wait_for_task (this=0x2ae41413c800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:326
#7  GangWorker::loop (this=0x2ae41413c800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/workgroup.cpp:345
#8  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae41413c800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#9  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#10 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 112 (Thread 0x2ae565ca2700 (LWP 28426)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae4740ba800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae5bc00ae00, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae4740ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae4740ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae565ca16c0, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3ac023b7b in ?? ()
#6  0x000000008255b980 in ?? ()
#7  0x00002ae565ca16c8 in ?? ()
#8  0x0000000000000000 in ?? ()

Thread 111 (Thread 0x2ae565da3700 (LWP 28427)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae5bc004b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae5bc004b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae5bc005000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae5bc005000, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=65538) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae393705e23 in attempt_allocation (actual_word_size=<synthetic pointer>, desired_word_size=65538, min_word_size=65538, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::mem_allocate (this=0x2ae39804f9c0, word_size=65538, gc_overhead_limit_was_exceeded=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:407
#10 0x00002ae393ae4504 in allocate_outside_tlab (allocation=..., this=0x2ae565da24c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:256
#11 mem_allocate (allocation=..., this=0x2ae565da24c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:354
#12 MemAllocator::allocate (this=this at entry=0x2ae565da24c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#13 0x00002ae3935985e4 in CollectedHeap::array_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, length=<optimized out>, do_zero=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:471
#14 0x00002ae393810ca6 in InterpreterRuntime::newarray (thread=0x2ae5bc005000, type=<optimized out>, size=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/interpreterRuntime.cpp:263
#15 0x00002ae3a4406939 in ?? ()
#16 0x00002ae3a44068f1 in ?? ()
#17 0x00002ae565da2538 in ?? ()
#18 0x00002ae40af515ac in ?? ()
#19 0x00002ae565da25d0 in ?? ()
#20 0x00002ae40af526b0 in ?? ()
#21 0x0000000000000000 in ?? ()

Thread 110 (Thread 0x2ae565ea4700 (LWP 28428)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae5bc007d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae5bc007d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae5bc006800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae5bc006800, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=65538) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae393705e23 in attempt_allocation (actual_word_size=<synthetic pointer>, desired_word_size=65538, min_word_size=65538, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::mem_allocate (this=0x2ae39804f9c0, word_size=65538, gc_overhead_limit_was_exceeded=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:407
#10 0x00002ae393ae4504 in allocate_outside_tlab (allocation=..., this=0x2ae565ea34c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:256
#11 mem_allocate (allocation=..., this=0x2ae565ea34c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:354
#12 MemAllocator::allocate (this=this at entry=0x2ae565ea34c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#13 0x00002ae3935985e4 in CollectedHeap::array_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, length=<optimized out>, do_zero=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:471
#14 0x00002ae393810ca6 in InterpreterRuntime::newarray (thread=0x2ae5bc006800, type=<optimized out>, size=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/interpreterRuntime.cpp:263
#15 0x00002ae3a4406939 in ?? ()
#16 0x00002ae3a44068f1 in ?? ()
#17 0x00002ae565ea3538 in ?? ()
#18 0x00002ae40af515ac in ?? ()
#19 0x00002ae565ea35d0 in ?? ()
#20 0x00002ae40af526b0 in ?? ()
#21 0x0000000000000000 in ?? ()

Thread 109 (Thread 0x2ae494990700 (LWP 28899)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae460013800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae47807e800, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae47804b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae47804b800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae49498f8c0, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae49498f890 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae49498f848 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae49498f8c0 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 108 (Thread 0x2ae49478e700 (LWP 28910)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46000f600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46000f600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x2ae398023c10, Self=Self at entry=0x2ae4800b7800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51f2e in Monitor::wait (this=this at entry=0x2ae398023c10, no_safepoint_check=<optimized out>, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1106
#5  0x00002ae393de7867 in VMThread::execute (op=0x2ae49478d2f0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/vmThread.cpp:657
#6  0x00002ae3936a825c in ThreadDumpDCmd::execute (this=0x2ae434186560, source=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/services/diagnosticCommand.cpp:624
#7  0x00002ae3936b10dd in DCmd::parse_and_execute (source=source at entry=DCmd_Source_Internal, out=out at entry=0x2ae49478d480, cmdline=cmdline at entry=0x2ae393e9dfe9 "Thread.print", delim=delim at entry=32 ' ', __the_thread__=__the_thread__ at entry=0x2ae4800b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/services/diagnosticFramework.cpp:409
#8  0x00002ae3938723b0 in execute_dcmd (cmd=0x2ae393e9dfe9 "Thread.print", st=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.cpp:44
#9  JfrDcmdEvent::thread_dump () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/periodic/jfrThreadDumpEvent.cpp:62
#10 0x00002ae393859c56 in JfrPeriodicEventSet::requestThreadDump () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/periodic/jfrPeriodic.cpp:115
#11 0x00002ae393845925 in requestEvent (id=JfrThreadDumpEvent) at /scratch/lmesnik/ws/hs-bigapps/build/linux-x64/hotspot/variant-server/gensrc/jfrfiles/jfrPeriodic.hpp:89
#12 jfr_emit_event (env=<optimized out>, jvm=<optimized out>, eventTypeId=355, timeStamp=<optimized out>, when=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/jni/jfrJniMethod.cpp:219
#13 0x00002ae3a43ef257 in ?? ()
#14 0x00002ae49478d5e0 in ?? ()
#15 0x00002ae40aae3e85 in ?? ()
#16 0x00002ae49478d640 in ?? ()
#17 0x00002ae40aae4170 in ?? ()
#18 0x00002ae4966b6a70 in ?? ()
#19 0x0000000000000099 in ?? ()
#20 0x0000000000000000 in ?? ()

Thread 107 (Thread 0x2ae49539a700 (LWP 28912)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae460028500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae45c011e80, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae528002800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae528002800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae495399860, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae495399830 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae4953997e8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae495399860 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 106 (Thread 0x2ae64e01d700 (LWP 28989)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4800aa200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4800aa200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024710, Self=0x2ae4800a9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4800a9000, this=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024710) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae3937055ff in MutexLockerEx (no_safepoint_check=false, mutex=0x2ae398024710, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:229
#7  G1CollectedHeap::attempt_allocation_slow (this=this at entry=0x2ae39804f9c0, word_size=word_size at entry=45861) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:432
#8  0x00002ae39370607f in attempt_allocation (actual_word_size=0x2ae64e01c880, desired_word_size=45861, min_word_size=256, this=0x2ae39804f9c0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:741
#9  G1CollectedHeap::allocate_new_tlab (this=0x2ae39804f9c0, min_size=256, requested_size=45861, actual_size=0x2ae64e01c880) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/g1/g1CollectedHeap.cpp:395
#10 0x00002ae393ae42c8 in MemAllocator::allocate_inside_tlab_slow (this=0x2ae64e01c8d0, allocation=...) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:316
#11 0x00002ae393ae45e1 in allocate_inside_tlab (allocation=..., this=0x2ae64e01c8d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:278
#12 mem_allocate (allocation=..., this=0x2ae64e01c8d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:348
#13 MemAllocator::allocate (this=this at entry=0x2ae64e01c8d0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/memAllocator.cpp:361
#14 0x00002ae39359859d in CollectedHeap::obj_allocate (this=<optimized out>, klass=<optimized out>, size=<optimized out>, __the_thread__=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/collectedHeap.cpp:466
#15 0x00002ae3937f0c09 in InstanceKlass::allocate_instance (this=this at entry=0x840087948, __the_thread__=__the_thread__ at entry=0x2ae4800a9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/oops/instanceKlass.cpp:1233
#16 0x00002ae393810ab6 in InterpreterRuntime::_new (thread=0x2ae4800a9000, pool=<optimized out>, index=7) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/interpreter/interpreterRuntime.cpp:257
#17 0x00002ae3a44067ae in ?? ()
#18 0x00002ae3a4406769 in ?? ()
#19 0x00002ae64e01c988 in ?? ()
#20 0x00002ae40ad7b989 in ?? ()
#21 0x00002ae64e01ca08 in ?? ()
#22 0x00002ae40ad7bae8 in ?? ()
#23 0x0000000000000000 in ?? ()

Thread 105 (Thread 0x2ae64d110700 (LWP 28995)):
#0  0x00002ae3927b8e4d in nanosleep () from /lib64/libpthread.so.0
#1  0x00002ae393b9d3c8 in os::naked_short_sleep (ms=ms at entry=2) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:4054
#2  0x00002ae3938789aa in JfrThreadSampler::run (this=0x2ae42c035000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/periodic/sampling/jfrThreadSampler.cpp:483
#3  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae42c035000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#4  0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#5  0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 104 (Thread 0x2ae64c908700 (LWP 29024)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=0x2ae4600d0d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b76245 in ObjectMonitor::wait (this=this at entry=0x2ae45c014380, millis=millis at entry=0, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae47813e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1271
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=0, __the_thread__=__the_thread__ at entry=0x2ae47813e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae64c907860, ms=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3a43ef257 in ?? ()
#6  0x00002ae64c907830 in ?? ()
#7  0x00002ae3a43eee26 in ?? ()
#8  0x00002ae3a43eede1 in ?? ()
#9  0x00002ae64c9077e8 in ?? ()
#10 0x0000000800521e08 in ?? ()
#11 0x00002ae64c907860 in ?? ()
#12 0x0000000800003748 in ?? ()
#13 0x0000000000000000 in ?? ()

Thread 103 (Thread 0x2ae64c504700 (LWP 29026)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600c8100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600c8100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398025110, Self=0x2ae478272000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b50fe1 in Monitor::lock (this=this at entry=0x2ae398025110, Self=Self at entry=0x2ae478272000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  0x00002ae393d21230 in MutexLocker (thread=0x2ae478272000, mutex=0x2ae398025110, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:190
#6  SystemDictionary::define_instance_class (k=k at entry=0x840282c08, __the_thread__=__the_thread__ at entry=0x2ae478272000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1634
#7  0x00002ae393d219ec in SystemDictionary::resolve_from_stream (class_name=class_name at entry=0x2ae66000add0, class_loader=..., protection_domain=..., st=st at entry=0x2ae64c502040, __the_thread__=__the_thread__ at entry=0x2ae478272000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/classfile/systemDictionary.cpp:1144
#8  0x00002ae3938cfea0 in jvm_define_class_common (env=env at entry=0x2ae478272330, name=name at entry=0x2ae64c502190 "spec/benchmarks/derby/DataReader", loader=loader at entry=0x2ae64c502720, buf=buf at entry=0x2ae66040c1e0 "\312\376\272\276", len=len at entry=2079, pd=pd at entry=0x2ae64c5026f8, source=0x2ae393eb8ebe "__JVM_DefineClass__", __the_thread__=0x2ae478272000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:935
#9  0x00002ae3938d00ff in JVM_DefineClassWithSource (env=0x2ae478272330, name=<optimized out>, loader=0x2ae64c502720, buf=0x2ae66040c1e0 "\312\376\272\276", len=2079, pd=<optimized out>, source=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:955
#10 0x00002ae394b77663 in Java_java_lang_ClassLoader_defineClass1 (env=0x2ae478272330, cls=<optimized out>, loader=0x2ae64c502720, name=0x2ae64c502718, data=<optimized out>, offset=<optimized out>, length=2079, pd=0x2ae64c5026f8, source=0x0) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libjava/ClassLoader.c:136
#11 0x00002ae3a43ef257 in ?? ()
#12 0x00002ae60000081f in ?? ()
#13 0x00002ae64c5026f8 in ?? ()
#14 0x0000000000000000 in ?? ()

Thread 102 (Thread 0x2ae4966ad700 (LWP 29270)):
#0  0x00002ae3927b5cf2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8efe in os::PlatformEvent::park (this=0x2ae4600e2600, millis=millis at entry=10000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1947
#2  0x00002ae393b76103 in ObjectMonitor::wait (this=this at entry=0x2ae48c007780, millis=millis at entry=10000, interruptible=interruptible at entry=true, __the_thread__=__the_thread__ at entry=0x2ae66003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/objectMonitor.cpp:1273
#3  0x00002ae393d1256c in ObjectSynchronizer::wait (obj=..., millis=millis at entry=10000, __the_thread__=__the_thread__ at entry=0x2ae66003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/synchronizer.cpp:484
#4  0x00002ae3938cb5eb in JVM_MonitorWait (env=<optimized out>, handle=0x2ae4966ac830, ms=10000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvm.cpp:616
#5  0x00002ae3ac023b7b in ?? ()
#6  0x00000000e2082b18 in ?? ()
#7  0x00002ae64e12fc3e in ?? ()
#8  0x00002ae4966ac938 in ?? ()
#9  0x00002ae66003e000 in ?? ()
#10 0x00002ae4966ac890 in ?? ()
#11 0x00000000000000b6 in ?? ()
#12 0x0000000000000000 in ?? ()

Thread 101 (Thread 0x2ae64c403700 (LWP 29604)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46002e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46002e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460062800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460062800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460062800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460062800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460062800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460062800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 100 (Thread 0x2ae5670b6700 (LWP 29605)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46003f500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46003f500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46009e800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46009e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46009e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46009e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46009e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46009e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 99 (Thread 0x2ae495da4700 (LWP 29606)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460066000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460066000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600d1800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600d1800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600d1800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600d1800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600d1800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600d1800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 98 (Thread 0x2ae495ea5700 (LWP 29607)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46001d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46001d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460023000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460023000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460023000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460023000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460023000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460023000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 97 (Thread 0x2ae495fa6700 (LWP 29608)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460030a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460030a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460016000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460016000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460016000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460016000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460016000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460016000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 96 (Thread 0x2ae4960a7700 (LWP 29609)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460077100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460077100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46001e000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46001e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46001e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46001e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46001e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46001e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 95 (Thread 0x2ae4961a8700 (LWP 29611)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434090d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434090d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460067000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460067000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460067000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460067000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460067000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460067000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 94 (Thread 0x2ae4962a9700 (LWP 29612)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae43408bd00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae43408bd00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460046800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460046800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460046800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460046800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460046800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460046800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 93 (Thread 0x2ae4963aa700 (LWP 29613)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434089900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434089900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460020000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460020000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460020000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460020000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460020000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460020000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 92 (Thread 0x2ae4964ab700 (LWP 29614)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae43408ea00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae43408ea00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46006b000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46006b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46006b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46006b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46006b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46006b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 91 (Thread 0x2ae4965ac700 (LWP 29615)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434093000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434093000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600ba000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600ba000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 90 (Thread 0x2ae4969ae700 (LWP 29616)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434085200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434085200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46001a000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46001a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46001a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46001a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46001a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46001a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 89 (Thread 0x2ae496aaf700 (LWP 29617)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae434087600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae434087600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460044800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460044800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460044800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460044800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460044800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460044800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 88 (Thread 0x2ae496cb3700 (LWP 29618)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600b9400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600b9400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460082800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460082800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460082800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460082800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460082800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460082800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 87 (Thread 0x2ae496db4700 (LWP 29619)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460019200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460019200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600de800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600de800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600de800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600de800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600de800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600de800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 86 (Thread 0x2ae496fb6700 (LWP 29620)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46001f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46001f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600af000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600af000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600af000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600af000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600af000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600af000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 85 (Thread 0x2ae4971b8700 (LWP 29621)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460079200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460079200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600c5000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600c5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600c5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600c5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600c5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c5000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 84 (Thread 0x2ae4973ba700 (LWP 29622)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460025f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460025f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600cd800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600cd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600cd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600cd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600cd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600cd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 83 (Thread 0x2ae4974bb700 (LWP 29623)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460090b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460090b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600e0000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600e0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600e0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600e0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600e0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600e0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 82 (Thread 0x2ae4975bc700 (LWP 29624)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46008c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46008c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46003e000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46003e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 81 (Thread 0x2ae565fa5700 (LWP 29625)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460048200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460048200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460077800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460077800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460077800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460077800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460077800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460077800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 80 (Thread 0x2ae5660a6700 (LWP 29626)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600d4f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600d4f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600d7800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600d7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600d7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600d7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600d7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600d7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 79 (Thread 0x2ae5661a7700 (LWP 29627)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460083e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460083e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600d3800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600d3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600d3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600d3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600d3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600d3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 78 (Thread 0x2ae5662a8700 (LWP 29628)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460072c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460072c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460088800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460088800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460088800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460088800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460088800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460088800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 77 (Thread 0x2ae5666ac700 (LWP 29629)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46009b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46009b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46009a000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46009a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46009a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46009a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46009a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46009a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 76 (Thread 0x2ae5669af700 (LWP 29630)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460015200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460015200) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600d5800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600d5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600d5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600d5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600d5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600d5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 75 (Thread 0x2ae566ab0700 (LWP 29631)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460021b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460021b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600a8800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600a8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600a8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600a8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600a8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600a8800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 74 (Thread 0x2ae566cb2700 (LWP 29632)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460094f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460094f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460057800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460057800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460057800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460057800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460057800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460057800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 73 (Thread 0x2ae5674ba700 (LWP 29633)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46008a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46008a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600ab000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600ab000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600ab000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600ab000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600ab000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600ab000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 72 (Thread 0x2ae5675bb700 (LWP 29634)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600b7100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600b7100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46008b000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46008b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46008b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46008b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46008b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46008b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 71 (Thread 0x2ae5676bc700 (LWP 29635)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600b4f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600b4f00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46009c000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46009c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46009c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46009c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46009c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46009c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 70 (Thread 0x2ae5677bd700 (LWP 29636)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600aa500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600aa500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600c0000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600c0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600c0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600c0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600c0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 69 (Thread 0x2ae567bc1700 (LWP 29637)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600d7100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600d7100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460080000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460080000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460080000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460080000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460080000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460080000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 68 (Thread 0x2ae567ec4700 (LWP 29638)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46002a300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46002a300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46008f000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46008f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46008f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46008f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46008f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46008f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 67 (Thread 0x2ae64c100700 (LWP 29639)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46005b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46005b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46007e000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46007e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46007e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46007e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46007e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46007e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 66 (Thread 0x2ae64c201700 (LWP 29640)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600a8300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600a8300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600ad000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600ad000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600ad000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600ad000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600ad000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600ad000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 65 (Thread 0x2ae64c706700 (LWP 29641)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600bb600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600bb600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600b5800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600b5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600b5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600b5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600b5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600b5800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 64 (Thread 0x2ae64cb0a700 (LWP 29642)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600dfa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600dfa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460091000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460091000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460091000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460091000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460091000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460091000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 63 (Thread 0x2ae64cc0b700 (LWP 29643)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460088300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460088300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460095800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460095800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460095800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460095800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460095800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460095800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 62 (Thread 0x2ae64ce0d700 (LWP 29644)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600ac700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600ac700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600a4800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600a4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600a4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600a4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600a4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600a4800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 61 (Thread 0x2ae64cf0e700 (LWP 29645)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460070a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460070a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460093800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460093800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460093800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460093800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460093800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460093800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 60 (Thread 0x2ae64d00f700 (LWP 29646)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460041b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460041b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600a6800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600a6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600a6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600a6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600a6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600a6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 59 (Thread 0x2ae64d411700 (LWP 29647)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46003d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46003d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600bc000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600bc000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600bc000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600bc000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600bc000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600bc000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 58 (Thread 0x2ae64d512700 (LWP 29648)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460086000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460086000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46002d000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46002d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46002d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46002d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46002d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46002d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 57 (Thread 0x2ae64d613700 (LWP 29649)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600c6100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600c6100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae46007c000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae46007c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae46007c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae46007c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae46007c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46007c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 56 (Thread 0x2ae64d714700 (LWP 29650)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460074e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae460074e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600cb000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600cb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600cb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600cb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600cb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600cb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 55 (Thread 0x2ae64d815700 (LWP 29651)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600bfa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600bfa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae460079800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae460079800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae460079800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae460079800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae460079800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460079800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 54 (Thread 0x2ae64d916700 (LWP 29652)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600cc700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600cc700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600e7800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600e7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600e7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600e7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600e7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600e7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 53 (Thread 0x2ae64da17700 (LWP 29653)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46006e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae46006e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600e9800, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600e9800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600e9800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600e9800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600e9800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600e9800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 52 (Thread 0x2ae64db18700 (LWP 29654)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600c1c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50cf8 in ParkCommon (timo=0, ev=0x2ae4600c1c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::IWait (this=this at entry=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, Self=Self at entry=0x2ae4600eb000, timo=timo at entry=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:768
#4  0x00002ae393b51ef1 in Monitor::wait (this=0x87d000 <InterpreterMacroAssembler::profile_typecheck(RegisterImpl*, RegisterImpl*, RegisterImpl*)+640>, no_safepoint_check=no_safepoint_check at entry=true, timeout=timeout at entry=0, as_suspend_equivalent=as_suspend_equivalent at entry=false) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:1091
#5  0x00002ae393d79213 in ThreadsSMRSupport::smr_delete (thread=thread at entry=0x2ae4600eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/threadSMR.cpp:981
#6  0x00002ae393d732c8 in smr_delete (this=0x2ae4600eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:209
#7  JavaThread::thread_main_inner (this=this at entry=0x2ae4600eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1801
#8  0x00002ae393d736c6 in JavaThread::run (this=0x2ae4600eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1775
#9  0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600eb000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#10 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#11 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 51 (Thread 0x2ae49549b700 (LWP 29678)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460061c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460061c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600c2800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 50 (Thread 0x2ae4970b7700 (LWP 29679)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46005cf00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46005cf00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460055800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460055800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 49 (Thread 0x2ae4959a0700 (LWP 29680)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46001b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46001b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460031800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460031800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 48 (Thread 0x2ae5671b7700 (LWP 29681)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46004c800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46004c800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460069000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460069000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 47 (Thread 0x2ae566fb5700 (LWP 29682)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46003f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46003f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46006f800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46006f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 46 (Thread 0x2ae64ca09700 (LWP 29683)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460099400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460099400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460060800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460060800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 45 (Thread 0x2ae64e520700 (LWP 29684)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae43408c900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae43408c900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460097800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460097800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 44 (Thread 0x2ae49589f700 (LWP 29685)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460061500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460061500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46005a000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46005a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 43 (Thread 0x2ae495aa1700 (LWP 29686)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46002c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46002c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460037800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460037800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 42 (Thread 0x2ae567fc5700 (LWP 29687)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46005d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46005d700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600c9000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c9000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 41 (Thread 0x2ae49559c700 (LWP 29688)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600a1c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600a1c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600b7800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600b7800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 40 (Thread 0x2ae64c605700 (LWP 29689)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460068400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460068400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460071800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460071800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 39 (Thread 0x2ae495299700 (LWP 29690)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46003b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46003b500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460010800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460010800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 38 (Thread 0x2ae567cc2700 (LWP 29691)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460017000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460017000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46001c000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46001c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 37 (Thread 0x2ae64cd0c700 (LWP 29692)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600d9400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600d9400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460053800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460053800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 36 (Thread 0x2ae496bb2700 (LWP 29693)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460038900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460038900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46004b000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46004b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 35 (Thread 0x2ae495198700 (LWP 29694)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600ca500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600ca500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460033800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460033800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 34 (Thread 0x2ae566eb4700 (LWP 29695)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460052800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460052800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460042800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460042800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 33 (Thread 0x2ae4978bf700 (LWP 29696)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460054800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460054800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460051800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460051800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 32 (Thread 0x2ae566db3700 (LWP 29697)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460051300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460051300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460073800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460073800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 31 (Thread 0x2ae495ca3700 (LWP 29698)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460057300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460057300) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46005c000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46005c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 30 (Thread 0x2ae64c807700 (LWP 29699)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460059500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460059500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460012800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460012800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 29 (Thread 0x2ae49569d700 (LWP 29700)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46009fa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46009fa00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460035800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460035800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 28 (Thread 0x2ae5678be700 (LWP 29701)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460063e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460063e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46005e000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46005e000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 27 (Thread 0x2ae567ac0700 (LWP 29702)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460023d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460023d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460025000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460025000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 26 (Thread 0x2ae5667ad700 (LWP 29703)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600e4b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600e4b00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600b2000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600b2000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 25 (Thread 0x2ae5679bf700 (LWP 29704)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460043d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460043d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460014000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460014000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 24 (Thread 0x2ae5672b8700 (LWP 29705)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460046000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460046000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46004d000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46004d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 23 (Thread 0x2ae5664aa700 (LWP 29706)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46006c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46006c600) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600cf000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600cf000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 22 (Thread 0x2ae5665ab700 (LWP 29707)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46004a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46004a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46002b000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46002b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 21 (Thread 0x2ae567dc3700 (LWP 29708)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460011500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460011500) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460029000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460029000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 20 (Thread 0x2ae495097700 (LWP 29709)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600bd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600bd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460086800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460086800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 19 (Thread 0x2ae496eb5700 (LWP 29710)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46004e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46004e800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600c6800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600c6800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 18 (Thread 0x2ae49488f700 (LWP 29711)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600b2d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600b2d00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460075800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460075800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 17 (Thread 0x2ae495ba2700 (LWP 29712)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460035000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460035000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46008d000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46008d000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 16 (Thread 0x2ae4972b9700 (LWP 29713)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460050a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460050a00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46002f000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46002f000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 15 (Thread 0x2ae494f96700 (LWP 29714)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460097100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460097100) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600e3800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600e3800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 14 (Thread 0x2ae5673b9700 (LWP 29715)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46009d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46009d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460026800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460026800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 13 (Thread 0x2ae494c93700 (LWP 29716)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46001b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46001b000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46003c000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46003c000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 12 (Thread 0x2ae494a91700 (LWP 29717)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600dd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600dd800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600da000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600da000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 11 (Thread 0x2ae494b92700 (LWP 29718)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460043700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460043700) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600be000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600be000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 10 (Thread 0x2ae494d94700 (LWP 29719)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46005f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46005f900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600a2800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600a2800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 9 (Thread 0x2ae494e95700 (LWP 29720)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae46006a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae46006a400) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46003a000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46003a000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 8 (Thread 0x2ae49579e700 (LWP 29721)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460032c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460032c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600a0000, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600a0000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 7 (Thread 0x2ae4976bd700 (LWP 29722)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600a3e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600a3e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460084800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460084800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 6 (Thread 0x2ae4977be700 (LWP 29723)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460052c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460052c00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae460017800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae460017800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 5 (Thread 0x2ae5663a9700 (LWP 29724)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae4600ae900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae4600ae900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46004f800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46004f800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 4 (Thread 0x2ae5668ae700 (LWP 29725)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460054e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460054e00) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae46006d800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae46006d800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 3 (Thread 0x2ae566bb1700 (LWP 29726)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460034900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460034900) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600dc800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600dc800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 2 (Thread 0x2ae64c302700 (LWP 29727)):
#0  0x00002ae3927b5945 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0
#1  0x00002ae393ba8d63 in os::PlatformEvent::park (this=this at entry=0x2ae460037000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/posix/os_posix.cpp:1897
#2  0x00002ae393b50920 in ParkCommon (timo=0, ev=0x2ae460037000) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:399
#3  Monitor::ILock (this=0x2ae398024f10, Self=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:461
#4  0x00002ae393b512c1 in lock (Self=0x2ae4600ed800, this=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:910
#5  Monitor::lock (this=this at entry=0x2ae398024f10) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutex.cpp:919
#6  0x00002ae393999682 in MutexLocker (mutex=0x2ae398024f10, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/mutexLocker.hpp:182
#7  thread_started (thread=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:668
#8  JvmtiEventController::thread_started (thread=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiEventController.cpp:1027
#9  0x00002ae39399f3a0 in JvmtiExport::post_thread_start (thread=thread at entry=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/prims/jvmtiExport.cpp:1395
#10 0x00002ae393d737d8 in JavaThread::run (this=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/runtime/thread.cpp:1764
#11 0x00002ae393ba0070 in thread_native_entry (thread=0x2ae4600ed800) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/os/linux/os_linux.cpp:698
#12 0x00002ae3927b1e25 in start_thread () from /lib64/libpthread.so.0
#13 0x00002ae392cc234d in clone () from /lib64/libc.so.6

Thread 1 (Thread 0x2ae3921ad880 (LWP 27915)):
#0  0x00002ae3927b2f57 in pthread_join () from /lib64/libpthread.so.0
#1  0x00002ae3925a2c7d in ContinueInNewThread0 (continuation=continuation at entry=0x2ae39259d8e0 <JavaMain>, stack_size=1048576, args=args at entry=0x7ffffdffd350) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/unix/native/libjli/java_md_solinux.c:749
#2  0x00002ae39259f3d2 in ContinueInNewThread (ifn=ifn at entry=0x7ffffdffd450, threadStackSize=<optimized out>, argc=<optimized out>, argv=0x873c00 <InterpreterMacroAssembler::push(TosState)+704>, mode=mode at entry=0, what=what at entry=0x0, ret=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libjli/java.c:2351
#3  0x00002ae3925a2d3b in JVMInit (ifn=ifn at entry=0x7ffffdffd450, threadStackSize=<optimized out>, argc=<optimized out>, argv=<optimized out>, mode=0, mode at entry=1, what=0x0, what at entry=0x8739e0 <InterpreterMacroAssembler::push(TosState)+160> "applications.kitchensink.process.stress.Main", ret=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/unix/native/libjli/java_md_solinux.c:796
#4  0x00002ae3925a09c8 in JLI_Launch (argc=<optimized out>, argv=<optimized out>, jargc=<optimized out>, jargv=<optimized out>, appclassc=0, appclassv=0x0, fullversion=0x400c30 <AllocTracer::send_allocation_outside_tlab(Klass*, HeapWord*, unsigned long, Thread*)+736> "12-internal+0-2018-10-19-0235139.lmesnik.hs-bigapps", dotversion=0x400c1e <AllocTracer::send_allocation_outside_tlab(Klass*, HeapWord*, unsigned long, Thread*)+718> "0.0", pname=0x400c19 <AllocTracer::send_allocation_outside_tlab(Klass*, HeapWord*, unsigned long, Thread*)+713> "java", lname=0x400c19 <AllocTracer::send_allocation_outside_tlab(Klass*, HeapWord*, unsigned long, Thread*)+713> "java", javaargs=0 '\000', cpwildcard=1 '\001', javaw=0 '\000', ergo=0) at /scratch/lmesnik/ws/hs-bigapps/open/src/java.base/share/native/libjli/java.c:341
#5  0x00000000004009cc in compressed_integers () at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrWriterHost.inline.hpp:39
#6  WriterHost<JfrBuffer> (thread=0x7ffffe0016f0, storage=0x2ae3922b0700, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrWriterHost.inline.hpp:138
#7  EventWriterHost<JfrBuffer> (thread=0x7ffffe0016f0, storage=0x2ae3922b0700, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrEventWriterHost.inline.hpp:33
#8  StackEventWriterHost<JfrBuffer> (thread=0x7ffffe0016f0, storage=0x2ae3922b0700, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrEventWriterHost.inline.hpp:83
#9  write_event (this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/recorder/service/jfrEvent.hpp:163
#10 commit (this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/recorder/service/jfrEvent.hpp:92
#11 AllocTracer::send_allocation_outside_tlab (klass=0x0, obj=<optimized out>, alloc_size=140737454806552, thread=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/allocTracer.cpp:41
#12 0x00002ae392bebc05 in __libc_start_main () from /lib64/libc.so.6
#13 0x0000000000400a65 in write<long> (len=1, value=<synthetic pointer>, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrWriterHost.inline.hpp:75
#14 write<long> (value=46943591922256, this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/writers/jfrWriterHost.inline.hpp:184
#15 write_event (this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/recorder/service/jfrEvent.hpp:166
#16 commit (this=<synthetic pointer>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/jfr/recorder/service/jfrEvent.hpp:92
#17 AllocTracer::send_allocation_outside_tlab (klass=<error reading variable: Cannot access memory at address 0x8>, obj=<optimized out>, alloc_size=140737454806544, thread=<optimized out>) at /scratch/lmesnik/ws/hs-bigapps/open/src/hotspot/share/gc/shared/allocTracer.cpp:41


More information about the serviceability-dev mailing list