Tukor Ferenc
05/24/2019, 12:48 PM// If garbage collection algorithm for cyclic garbage to be used.
// We are using the Bacon's algorithm for GC, see
// <http://researcher.watson.ibm.com/researcher/files/us-bacon/Bacon03Pure.pdf>.
#define USE_GC 1
Does this define control all GC behaviour? If I set it to zero have I achieved manual memory management in all cases?
Is there an easy to control option for this in any IDE that supports Kotlin or do I have to build my own runtime with the option set the way I want and then manually bind that runtime to my project?napperley
05/24/2019, 11:01 PMnapperley
05/24/2019, 11:04 PMTukor Ferenc
05/27/2019, 7:20 AM