Revision 1072.
With asEP_AUTO_GARBAGE_COLLECT true, on releasing engine, present hang in aprox 1 minute.
This happens both - from loading from source or bytecode.
asEP_AUTO_GARBAGE_COLLECT hang
I need a little more than that to investigate the problem.
Do you have a lot of objects in the garbage collector just before releasing the engine? (call GetGCStatistics to find out)
Did you have an similar amount of objects before upgrading AngelScript?
Do you have a lot of objects in the garbage collector just before releasing the engine? (call GetGCStatistics to find out)
Did you have an similar amount of objects before upgrading AngelScript?
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game
Do you have a lot of objects in the garbage collector just before releasing the engine? (call GetGCStatistics to find out)[/quote]currentSize = 1134, totalDestroyed = 41484, totalDetected = 2053, newObjects = 0, totalNewDestroyed = 7667
Did you have an similar amount of objects before upgrading AngelScript?[/quote]Yes. Previous revision is 945.
Looks normal. I see you have around 5 percent of your garbage collected objects forming circular references that are then detected and destroyed by the garbage collector.
I believe the slow down is related to the other problem you're mentioning where it seems the GC isn't able to free all objects for some reason. This would cause the GC to make multiple passes over the list and would likely take a while (though 1 minute is a very long time).
I believe the slow down is related to the other problem you're mentioning where it seems the GC isn't able to free all objects for some reason. This would cause the GC to make multiple passes over the list and would likely take a while (though 1 minute is a very long time).
AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement