Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/coreclr/pal/src/synchmgr/synchmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1160,7 +1160,7 @@ namespace CorUnix
reinterpret_cast<CPalSynchronizationManager*>(pArg);
CPalThread * pthrWorker = InternalGetCurrentThread();

SetThreadDescription(PAL_GetCurrentThread(), W(".NET SynchManager"));
SetThreadDescription(PAL_GetCurrentThread(), W(".NET Sync Mgr"));

while (!fWorkerIsDone)
{
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/eepolicy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ void DECLSPEC_NORETURN EEPolicy::HandleFatalStackOverflow(EXCEPTION_POINTERS *pE

DisplayStackOverflowException();

HandleHolder stackDumpThreadHandle = Thread::CreateUtilityThread(Thread::StackSize_Small, LogStackOverflowStackTraceThread, GetThreadNULLOk(), W(".NET Stack overflow trace logger"));
HandleHolder stackDumpThreadHandle = Thread::CreateUtilityThread(Thread::StackSize_Small, LogStackOverflowStackTraceThread, GetThreadNULLOk(), W(".NET SO Tracer"));
if (stackDumpThreadHandle != INVALID_HANDLE_VALUE)
{
// Wait for the stack trace logging completion
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/excep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3430,7 +3430,7 @@ CreateCrashDumpIfEnabled(bool stackoverflow)
{
if (stackoverflow)
{
HandleHolder createDumpThreadHandle = Thread::CreateUtilityThread(Thread::StackSize_Small, (LPTHREAD_START_ROUTINE)LaunchCreateDump, (void*)createDumpCommandLine, W(".NET Stack overflow create dump"));
HandleHolder createDumpThreadHandle = Thread::CreateUtilityThread(Thread::StackSize_Small, (LPTHREAD_START_ROUTINE)LaunchCreateDump, (void*)createDumpCommandLine, W(".NET SO Dumper"));
if (createDumpThreadHandle != INVALID_HANDLE_VALUE)
{
// Wait for the dump to be generated
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/vm/tieredcompilation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ void TieredCompilationManager::CreateBackgroundWorker()
#endif
newThread->SetBackground(true);

if (!newThread->CreateNewThread(0, BackgroundWorkerBootstrapper0, newThread, W(".NET Tiered Compilation Worker")))
if (!newThread->CreateNewThread(0, BackgroundWorkerBootstrapper0, newThread, W(".NET Tiered JIT")))
{
newThread->DecExternalCount(false);
ThrowOutOfMemory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public IOCompletionPoller(nint port)

_thread.IsThreadPoolThread = true;
_thread.IsBackground = true;
_thread.Name = ".NET ThreadPool IO";
_thread.Name = ".NET TP I/O";
Comment thread
danmoseley marked this conversation as resolved.

// Thread pool threads must start in the default execution context without transferring the context, so
// using UnsafeStart() instead of Start()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected internal override void QueueTask(Task task)
new Thread(s_longRunningThreadWork)
{
IsBackground = true,
Name = ".NET Long Running Task"
Name = ".NET Long Task"
}.UnsafeStart(task);
}
else
Expand Down
2 changes: 1 addition & 1 deletion src/mono/browser/runtime/pthreads/worker-thread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export function mono_wasm_pthread_on_pthread_attached (pthread_id: PThreadPtr, t
// FIXME: this is a hack to get constant length thread names
monoThreadInfo.threadName = name;
monoThreadInfo.isTimer = name == ".NET Timer";
monoThreadInfo.isLongRunning = name == ".NET Long Running Task";
monoThreadInfo.isLongRunning = name == ".NET Long Task";
monoThreadInfo.isThreadPoolGate = name == ".NET TP Gate";
update_thread_info();
currentWorkerThreadEvents.dispatchEvent(makeWorkerThreadEvent(dotnetPthreadAttached, pthread_self));
Expand Down
Loading