Dbg:Threading: prefix thread names with "smo:" so they group

This commit is contained in:
2025-11-06 15:09:15 -04:00
parent c7e117b08e
commit eeb057effd
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
int main(int argc, char *argv[], char *envp[])
{
pthread_setname_np(pthread_self(), "CRT:main");
pthread_setname_np(pthread_self(), "smo:CRT:main");
/* We don't do anything inside of main()
* Main merely waits for the marionette thread to exit.
*/