Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/coreclr/vm/tieredcompilation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,9 @@ void TieredCompilationManager::BackgroundWorkerStart()
{
continue;
}
_ASSERTE(waitResult == WAIT_TIMEOUT);

// The wait timed out, see if the worker can exit
// The wait timed out, see if the worker can exit. When using the PAL, it may be possible to get WAIT_FAILED in some
// shutdown scenarios, treat that as a timeout too since a signal would not have been observed anyway.

LockHolder tieredCompilationLockHolder;

Expand Down