Force GC to run periodically in order to reduce stuttering

This commit is contained in:
2023-05-08 21:13:55 +03:00
parent 69cdb1268a
commit da149d32cf
7 changed files with 78 additions and 3 deletions

View File

@@ -160,6 +160,15 @@ void MCore::GC::Collect(int32 generation)
{
}
void MCore::GC::Collect(int32 generation, MGCCollectionMode collectionMode, bool blocking, bool compacting)
{
}
int32 MCore::GC::MaxGeneration()
{
return 0;
}
void MCore::GC::WaitForPendingFinalizers()
{
}