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
GC could be caused by a low-priority thread.
It would help if the thread that performs the suspension and release of the runtime changes its priority temporarily to Normal.
The text was updated successfully, but these errors were encountered:
// If this thread is running at low priority, boost its priority. We remember the old
Tweaking thread priorities is a rare scenario as it often causes unwanted consequences.
Even more rare is when a low-priority thread is the one who triggers GC (statistically it is the one who allocates the most). It is still good to have a precaution against other threads starving the one who tries to do suspend them.
In Workstation GC it is also the thread that does the actual GC.
GC could be caused by a low-priority thread.
It would help if the thread that performs the suspension and release of the runtime changes its priority temporarily to Normal.
The text was updated successfully, but these errors were encountered: