Skip to content

.NET Core 3.0 RTM Freeze on Ubuntu 16.04 OpenVZ #13475

Closed
@303248153

Description

Today I installed .NET Core 3.0 RTM (3.0.100) on my ubuntu 16.04.6 x86-64 vps, when I trying to build a hello world console project, the dotnet process with following arguments freeze:

dotnet exec /usr/share/dotnet/sdk/3.0.100/MSBuild.dll -maxcpucount -verbosity:m -nologo -target:Restore -verbosity:diag -distributedlogger:Microsoft.DotNet.Tools.MSBuild.MSBuildLogger,/usr/share/dotnet/sdk/3.0.100/dotnet.dll*Microsoft.DotNet.Tools.MSBuild.MSBuildForwardingLogger,/usr/share/dotnet/sdk/3.0.100/dotnet.dll

The previous version (.NET Core 2.2) doesn't have this issue.

Then I trying to build coreclr from source to find why it happends.
I clone coreclr repository, checkout release/3.1 branch, then run build.sh, and it freeze again.
The command line:

/home/ubuntu/tmp/coreclr/.dotnet/dotnet msbuild /home/ubuntu/tmp/coreclr/src/.nuget/optdata/optdata.csproj /t:DumpPgoDataPackageVersion /p:__BuildArch=x64 /p:__BuildType=Debug /p:__BuildOS=Linux /nodeReuse:false /p:RestoreDuringBuild=true /p:PgoDataPackageVersionOutputFile=/home/ubuntu/tmp/coreclr/bin/obj/Linux.x64.Debug/optdataversion.txt /nologo

I attach the process with gdb and run thread apply all bt, here is the output messages, looks like .NET Core 3.0 have some deadlock bug on ubuntu 16.04, both RTM and preview 7.

Thread 19 (Thread 0x7f1ed5ea0700 (LWP 12863)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45a8422 in CorUnix::InternalEnterCriticalSection(CorUnix::CPalThread*, _CRITICAL_SECTION*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed4200435 in CrstBase::Enter() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed4349e47 in ThreadSuspend::LockThreadStore(ThreadSuspend::SUSPEND_REASON) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed42796cb in ThreadStore::AddThread(Thread*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed42797c2 in SetupUnstartedThread(int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed429e020 in ThreadpoolMgr::CreateUnimpersonatedThread(unsigned int (*)(void*), void*, int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed429d000 in ThreadpoolMgr::MaybeAddWorkingWorker() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed42a07dd in ThreadpoolMgr::GateThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed5be26ba in start_thread (arg=0x7f1ed5ea0700) at pthread_create.c:333
dotnet/coreclr#11 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 18 (Thread 0x7f1d8a1fa700 (LWP 12856)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed446da9d in WKS::gc_heap::wait_for_gc_done(int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed44a1311 in WKS::GCHeap::WaitUntilGCComplete(bool) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed429e567 in ThreadpoolMgr::WorkerThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed5be26ba in start_thread (arg=0x7f1d8a1fa700) at pthread_create.c:333
dotnet/coreclr#11 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 17 (Thread 0x7f1d8abfb700 (LWP 12847)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed434a11b in Thread::RareDisablePreemptiveGC() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed42798e6 in Thread::OnThreadTerminate(int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed429e8e3 in ThreadpoolMgr::WorkerThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed5be26ba in start_thread (arg=0x7f1d8abfb700) at pthread_create.c:333
dotnet/coreclr#11 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 16 (Thread 0x7f1d8b5fc700 (LWP 12845)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed446da9d in WKS::gc_heap::wait_for_gc_done(int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed44a1311 in WKS::GCHeap::WaitUntilGCComplete(bool) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed429e567 in ThreadpoolMgr::WorkerThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed5be26ba in start_thread (arg=0x7f1d8b5fc700) at pthread_create.c:333
dotnet/coreclr#11 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 15 (Thread 0x7f1d8bffd700 (LWP 12841)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1831 in WaitForMultipleObjectsEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed427ca04 in Thread::DoAppropriateWaitWorker(int, void**, int, unsigned int, WaitMode) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed4277ef9 in Thread::DoAppropriateWait(int, void**, int, unsigned int, WaitMode, PendingSync*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed44000dc in WaitHandleNative::CorWaitOneNative(void*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1e5aa7942d in ?? ()
dotnet/coreclr#9  0x00007f1d8bffcc40 in ?? ()
dotnet/coreclr#10 0x00007f1d8c1bc8a8 in ?? ()
dotnet/coreclr#11 0x00007f1d8c1d20b8 in ?? ()
dotnet/coreclr#12 0x00007f1d00000001 in ?? ()
dotnet/coreclr#13 0x00007f1d8c1d20a0 in ?? ()
dotnet/coreclr#14 0x00007f1d8c1bc8a8 in ?? ()
dotnet/coreclr#15 0x00007f1d8bffcc90 in ?? ()
dotnet/coreclr#16 0x00007f1e5aa79314 in ?? ()
dotnet/coreclr#17 0x00007f1d8c1d20a0 in ?? ()
dotnet/coreclr#18 0x00007f1d8c1bc8a8 in ?? ()
dotnet/coreclr#19 0x00007f1d8bffcce0 in ?? ()
dotnet/coreclr#20 0x00007f1e5aa82ebf in ?? ()
dotnet/coreclr#21 0x00007f1d8bffcca0 in ?? ()
dotnet/coreclr#22 0x00007f1d8c1bc888 in ?? ()
dotnet/coreclr#23 0x00007f1d8c1bc858 in ?? ()
dotnet/coreclr#24 0x0000000200000000 in ?? ()
dotnet/runtime#3858 0x0000000200000002 in ?? ()
dotnet/runtime#3859 0x00000000ffffffff in ?? ()
dotnet/coreclr#27 0x00007f1d8c1bc858 in ?? ()
dotnet/runtime#3860 0x0000000000000009 in ?? ()
dotnet/runtime#3861 0x00007f1d8bffcd70 in ?? ()
dotnet/runtime#3862 0x00007f1e5aa81e80 in ?? ()
dotnet/runtime#3863 0xa1a168411a874f10 in ?? ()
dotnet/coreclr#32 0x1318fdefacd62aa6 in ?? ()
dotnet/runtime#3864 0x97fce06f1e159f73 in ?? ()
dotnet/runtime#3865 0xa4460fe33eb93df9 in ?? ()
dotnet/coreclr#35 0x46000000ac000000 in ?? ()
dotnet/coreclr#36 0x00007f1d8c1bc858 in ?? ()
dotnet/runtime#3866 0x00000000ffffffff in ?? ()
dotnet/coreclr#38 0x0000000000000000 in ?? ()

Thread 14 (Thread 0x7f1e59140700 (LWP 12840)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed434a11b in Thread::RareDisablePreemptiveGC() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed427cc85 in Thread::DoAppropriateWaitWorker(int, void**, int, unsigned int, WaitMode) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed4277ef9 in Thread::DoAppropriateWait(int, void**, int, unsigned int, WaitMode, PendingSync*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed44000dc in WaitHandleNative::CorWaitOneNative(void*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1e5aa7942d in ?? ()
dotnet/coreclr#11 0x00007f1e5913f6e0 in ?? ()
dotnet/coreclr#12 0x0000000000000000 in ?? ()

Thread 13 (Thread 0x7f1e59b41700 (LWP 12839)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed434a11b in Thread::RareDisablePreemptiveGC() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed427cc85 in Thread::DoAppropriateWaitWorker(int, void**, int, unsigned int, WaitMode) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed4277ef9 in Thread::DoAppropriateWait(int, void**, int, unsigned int, WaitMode, PendingSync*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed44000dc in WaitHandleNative::CorWaitOneNative(void*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1e5aa7942d in ?? ()
dotnet/coreclr#11 0x00007f1e59b406d0 in ?? ()
dotnet/coreclr#12 0x0000000000000000 in ?? ()

Thread 12 (Thread 0x7f1ebd0c1700 (LWP 12837)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
dotnet/coreclr#1  0x00007f1ed45ad2ab in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed434af73 in ThreadSuspend::SuspendRuntime(ThreadSuspend::SUSPEND_REASON) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed434c60e in ThreadSuspend::SuspendEE(ThreadSuspend::SUSPEND_REASON) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed44a2e53 in GCToEEInterface::SuspendEE(SUSPEND_REASON) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed44793b8 in WKS::GCHeap::GarbageCollectGeneration(unsigned int, gc_reason) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed447b440 in WKS::gc_heap::try_allocate_more_space(alloc_context*, unsigned long, unsigned int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#11 0x00007f1ed449d080 in WKS::GCHeap::Alloc(gc_alloc_context*, unsigned long, unsigned int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#12 0x00007f1ed42de450 in AllocateSzArray(MethodTable*, int, GC_ALLOC_FLAGS, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#13 0x00007f1ed42ebc8b in JIT_NewArr1(CORINFO_CLASS_STRUCT_*, long) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#14 0x00007f1e5bfd8819 in ?? ()
dotnet/coreclr#15 0x0000000000001000 in ?? ()
dotnet/coreclr#16 0x00007f1d8c3f5860 in ?? ()
dotnet/coreclr#17 0x0000000000000000 in ?? ()

Thread 11 (Thread 0x7f1ebdac2700 (LWP 12836)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1759 in WaitForSingleObjectEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed4346d74 in CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed434a11b in Thread::RareDisablePreemptiveGC() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed427cc85 in Thread::DoAppropriateWaitWorker(int, void**, int, unsigned int, WaitMode) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed4277ef9 in Thread::DoAppropriateWait(int, void**, int, unsigned int, WaitMode, PendingSync*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed44000dc in WaitHandleNative::CorWaitOneNative(void*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1e5aa7942d in ?? ()
dotnet/coreclr#11 0x00007f1ebdac16d0 in ?? ()
dotnet/coreclr#12 0x0000000000000000 in ?? ()

Thread 10 (Thread 0x7f1ebed8f700 (LWP 12834)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
dotnet/coreclr#1  0x00007f1ed45ad2ab in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b1c89 in SleepEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed42e233a in __SwitchToThread(unsigned int, unsigned int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed429dd35 in ThreadpoolMgr::GetRecycledMemory(ThreadpoolMgr::MemType) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed43fcdd2 in DelegateInfo::MakeDelegateInfo(Object**, Object**, Object**) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed43fe2ea in ThreadPoolNative::CorRegisterWaitForSingleObject(Object*, Object*, unsigned int, bool, Object*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1e5aa7711a in ?? ()
dotnet/coreclr#9  0x00007f1d8c1c2ca0 in ?? ()
dotnet/coreclr#10 0x00007f1d8c1c2d20 in ?? ()
dotnet/coreclr#11 0x00007f1d8c1c2ce0 in ?? ()
dotnet/coreclr#12 0x00007f1d8c1c2ce0 in ?? ()
dotnet/coreclr#13 0x0000000100000001 in ?? ()
dotnet/coreclr#14 0x00007f1d8c1c2ca0 in ?? ()
dotnet/coreclr#15 0x00007f1d8c1c2c20 in ?? ()
dotnet/coreclr#16 0x00007f1d8c1c2c68 in ?? ()
dotnet/coreclr#17 0x00007f1d8c1c2c88 in ?? ()
dotnet/coreclr#18 0x000000000000322a in ?? ()
dotnet/coreclr#19 0x00007f1ebed8e380 in ?? ()
dotnet/coreclr#20 0x00007f1e5aa773ee in ?? ()
dotnet/coreclr#21 0x00007f1d8c1c2ca0 in ?? ()
dotnet/coreclr#22 0x00007f1d8c1c2c88 in ?? ()
dotnet/coreclr#23 0x00007f1ebed8e3c0 in ?? ()
dotnet/coreclr#24 0x00007f1e5b945064 in ?? ()
dotnet/runtime#3858 0x00007f1ebed8e390 in ?? ()
dotnet/runtime#3859 0x00007f1d8c1bc2c8 in ?? ()
dotnet/coreclr#27 0x00007f1d8c1bc2c8 in ?? ()
dotnet/runtime#3860 0x00007f1d00000001 in ?? ()
dotnet/runtime#3861 0x00000000000002c0 in ?? ()
dotnet/runtime#3862 0x00007f1d8c1c2a90 in ?? ()
dotnet/runtime#3863 0x00007f1ebed8e4e0 in ?? ()
dotnet/coreclr#32 0x00007f1e5b93dfce in ?? ()
dotnet/runtime#3864 0x0000000000000001 in ?? ()
dotnet/runtime#3865 0x0000000000000000 in ?? ()

Thread 9 (Thread 0x7f1ed5ee9700 (LWP 12833)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
dotnet/coreclr#1  0x00007f1ed45ad2ab in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b1c89 in SleepEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed42a0f8d in ThreadpoolMgr::TimerThreadFire() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed42a0e55 in ThreadpoolMgr::TimerThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed5be26ba in start_thread (arg=0x7f1ed5ee9700) at pthread_create.c:333
dotnet/coreclr#8  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 8 (Thread 0x7f1ec1a3d700 (LWP 12832)):
#0  0x00007f1ed5beb76d in accept () at ../sysdeps/unix/syscall-template.S:84
dotnet/coreclr#1  0x00007f1ed44dffdd in IpcStream::DiagnosticsIpc::Accept(void (*)(char const*, unsigned int)) const ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed42c47c0 in DiagnosticsServerThread(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed5be26ba in start_thread (arg=0x7f1ec1a3d700) at pthread_create.c:333
dotnet/coreclr#5  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 7 (Thread 0x7f1ec243e700 (LWP 12831)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:225
dotnet/coreclr#1  0x00007f1ed45ad2ab in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1831 in WaitForMultipleObjectsEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed42dcc4e in FinalizerThread::WaitForFinalizerEvent(CLREvent*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed42dcd62 in FinalizerThread::FinalizerThreadWorker(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed4280225 in ManagedThreadBase_DispatchOuter(ManagedThreadCallState*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed42808dd in ManagedThreadBase::FinalizerBase(void (*)(void*)) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed42dcf9c in FinalizerThread::FinalizerThreadStart(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#10 0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#11 0x00007f1ed5be26ba in start_thread (arg=0x7f1ec243e700) at pthread_create.c:333
dotnet/coreclr#12 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 6 (Thread 0x7f1e5a546700 (LWP 12830)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1831 in WaitForMultipleObjectsEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed44d71a6 in DebuggerRCThread::MainLoop() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed44d704b in DebuggerRCThread::ThreadProc() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed44d6d69 in DebuggerRCThread::ThreadProcStatic(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#9  0x00007f1ed5be26ba in start_thread (arg=0x7f1e5a546700) at pthread_create.c:333
dotnet/coreclr#10 0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 5 (Thread 0x7f1ed1403700 (LWP 12829)):
#0  0x00007f1ed5bebc7d in open64 () at ../sysdeps/unix/syscall-template.S:84
dotnet/coreclr#1  0x00007f1ed44e024f in TwoWayPipe::WaitForConnection() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed44d9af2 in DbgTransportSession::TransportWorker() () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed44d8a09 in DbgTransportSession::TransportWorkerStatic(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed5be26ba in start_thread (arg=0x7f1ed1403700) at pthread_create.c:333
dotnet/coreclr#6  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 4 (Thread 0x7f1ed200f700 (LWP 12828)):
#0  0x00007f1ed4e6774d in poll () at ../sysdeps/unix/syscall-template.S:84
dotnet/coreclr#1  0x00007f1ed45af30e in CorUnix::CPalSynchronizationManager::ReadBytesFromProcessPipe(int, unsigned char*, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45aeee8 in CorUnix::CPalSynchronizationManager::ReadCmdFromProcessPipe(int, CorUnix::CPalSynchronizationManager::SynchWorkerCmd*, void**, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45aeb64 in CorUnix::CPalSynchronizationManager::WorkerThread(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b743d in CorUnix::CPalThread::ThreadEntry(void*) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed5be26ba in start_thread (arg=0x7f1ed200f700) at pthread_create.c:333
dotnet/coreclr#6  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 3 (Thread 0x7f1ed2a10700 (LWP 12827)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
dotnet/coreclr#1  0x00007f1ed3a5287c in ?? () from /usr/lib/x86_64-linux-gnu/liblttng-ust.so.0
dotnet/coreclr#2  0x00007f1ed5be26ba in start_thread (arg=0x7f1ed2a10700) at pthread_create.c:333
dotnet/coreclr#3  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 2 (Thread 0x7f1ed3411700 (LWP 12826)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
dotnet/coreclr#1  0x00007f1ed3a5287c in ?? () from /usr/lib/x86_64-linux-gnu/liblttng-ust.so.0
dotnet/coreclr#2  0x00007f1ed5be26ba in start_thread (arg=0x7f1ed3411700) at pthread_create.c:333
dotnet/coreclr#3  0x00007f1ed4e7341d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 1 (Thread 0x7f1ed600e740 (LWP 12825)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at ../sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
dotnet/coreclr#1  0x00007f1ed45ad2b5 in CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#2  0x00007f1ed45acec4 in CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#3  0x00007f1ed45b14be in CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#4  0x00007f1ed45b1831 in WaitForMultipleObjectsEx () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#5  0x00007f1ed427ca04 in Thread::DoAppropriateWaitWorker(int, void**, int, unsigned int, WaitMode) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#6  0x00007f1ed4277ef9 in Thread::DoAppropriateWait(int, void**, int, unsigned int, WaitMode, PendingSync*) ()
   from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#7  0x00007f1ed44000dc in WaitHandleNative::CorWaitOneNative(void*, int) () from /home/ubuntu/tmp/coreclr/.dotnet/shared/Microsoft.NETCore.App/3.0.0-preview7-27912-14/libcoreclr.so
dotnet/coreclr#8  0x00007f1e5aa7942d in ?? ()
dotnet/coreclr#9  0x00007ffec2b34b90 in ?? ()
dotnet/coreclr#10 0x00007f1d8c213740 in ?? ()
dotnet/coreclr#11 0x00007f1d8c213758 in ?? ()
dotnet/coreclr#12 0x00007f1d00000001 in ?? ()
dotnet/coreclr#13 0x00007f1d8c213740 in ?? ()
dotnet/coreclr#14 0x00007f1d8c1bc8a8 in ?? ()
dotnet/coreclr#15 0x00007ffec2b34be0 in ?? ()
dotnet/coreclr#16 0x00007f1e5aa79314 in ?? ()
dotnet/coreclr#17 0x00007f1d8c213740 in ?? ()
dotnet/coreclr#18 0x00007f1d8c1bc8a8 in ?? ()
dotnet/coreclr#19 0x00007ffec2b34c30 in ?? ()
dotnet/coreclr#20 0x00007f1e5aa82ebf in ?? ()
dotnet/coreclr#21 0x00007ffec2b34bf0 in ?? ()
dotnet/coreclr#22 0x00007f1d8c1bc88c in ?? ()
dotnet/coreclr#23 0x00007f1d8c1bc858 in ?? ()
dotnet/coreclr#24 0x0000000000000000 in ?? ()

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions