gc: shorten background thread name to fit Linux name limit (#43679)
authorTom Deseyn <tom.deseyn@gmail.com>
Thu, 22 Oct 2020 20:09:11 +0000 (22:09 +0200)
committerGitHub <noreply@github.com>
Thu, 22 Oct 2020 20:09:11 +0000 (13:09 -0700)
* gc: shorten background thread name to fit Linux name limit

src/coreclr/src/gc/gc.cpp

index a866d50..9f022df 100644 (file)
@@ -28803,7 +28803,7 @@ BOOL gc_heap::create_bgc_thread(gc_heap* gh)
 
     //dprintf (2, ("Creating BGC thread"));
 
-    gh->bgc_thread_running = GCToEEInterface::CreateThread(gh->bgc_thread_stub, gh, true, ".NET Background GC");
+    gh->bgc_thread_running = GCToEEInterface::CreateThread(gh->bgc_thread_stub, gh, true, ".NET BGC");
     return gh->bgc_thread_running;
 }