Home
last modified time | relevance | path

Searched refs:GC_ENABLE_LAZY_SWEEP (Results 1 – 3 of 3) sorted by relevance

/dports/lang/ruby26/ruby-2.6.9/
H A Dgc.c305 #ifndef GC_ENABLE_LAZY_SWEEP
306 #define GC_ENABLE_LAZY_SWEEP 1 macro
796 #define is_lazy_sweeping(heap) (GC_ENABLE_LAZY_SWEEP && has_sweeping_pages(heap))
3800 #if GC_ENABLE_LAZY_SWEEP in gc_sweep_step()
3842 #if GC_ENABLE_LAZY_SWEEP in gc_sweep_step()
3863 if (!GC_ENABLE_LAZY_SWEEP) return; in gc_sweep_continue()
3883 #if !GC_ENABLE_LAZY_SWEEP in gc_sweep()
3888 #if !GC_ENABLE_LAZY_SWEEP in gc_sweep()
6617 if (!GC_ENABLE_LAZY_SWEEP || objspace->flags.dont_incremental) { in gc_start()
10125 OPT(GC_ENABLE_LAZY_SWEEP); in Init_GC()
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DChangeLog-2.1.012618 * gc.c (garbage_collect_body): fix GC_ENABLE_LAZY_SWEEP condition.
15921 * gc.c (GC_ENABLE_LAZY_SWEEP): new macro to switch lazy sweeping
H A DChangeLog-2.2.01405 * gc.c: similar to GC_ENABLE_LAZY_SWEEP.