Disable partial JIT invalidation on unmap (#1991)
This commit is contained in:
@ -33,5 +33,10 @@ namespace ARMeilleure.Translation
|
||||
{
|
||||
return !HighCq && Interlocked.Increment(ref _callCount) == MinCallsForRejit;
|
||||
}
|
||||
|
||||
public void ResetCallCount()
|
||||
{
|
||||
Interlocked.Exchange(ref _callCount, 0);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user