You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TRACE2 convention for thread naming is for each child process's main
thread of execution to be named "main." In GCM, however, we encountered an
issue with our UI Helper exes - their main threads of execution are named
AppMain.
To temporarily work around this issue, we default the thread name for all
TRACE2 events to "main" (rather than changing GCM's process names). This
will do for our current events, which are all called from the main thread
of execution. However, it is important to note that future events (i.e.
regions) will require deeper thought around the GCM/TRACE2 process model,
as they will be called on threads from .NET's ThreadPool rather than the
main thread of execution.
0 commit comments