We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
not_freed_enough
1 parent bbdc1f3 commit c7cb486Copy full SHA for c7cb486
1 file changed
src/gc.c
@@ -3688,7 +3688,7 @@ static int _jl_gc_collect(jl_ptls_t ptls, jl_gc_collection_t collection)
3688
3689
if (collection == JL_GC_AUTO) {
3690
//If we aren't freeing enough or are seeing lots and lots of pointers let it increase faster
3691
- if (!not_freed_enough || large_frontier) {
+ if (not_freed_enough || large_frontier) {
3692
int64_t tot = 2 * (live_bytes + actual_allocd) / 3;
3693
if (gc_num.interval > tot) {
3694
gc_num.interval = tot;
0 commit comments