Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1253,8 +1253,14 @@ static void reset_thread_gc_counts(void) JL_NOTSAFEPOINT
for (int i = 0; i < gc_n_threads; i++) {
jl_ptls_t ptls = gc_all_tls_states[i];
if (ptls != NULL) {
memset(&ptls->gc_num, 0, sizeof(ptls->gc_num));
// don't reset `pool_live_bytes` here
jl_atomic_store_relaxed(&ptls->gc_num.allocd, -(int64_t)gc_num.interval);
jl_atomic_store_relaxed(&ptls->gc_num.freed, 0);
jl_atomic_store_relaxed(&ptls->gc_num.malloc, 0);
jl_atomic_store_relaxed(&ptls->gc_num.realloc, 0);
jl_atomic_store_relaxed(&ptls->gc_num.poolalloc, 0);
jl_atomic_store_relaxed(&ptls->gc_num.bigalloc, 0);
jl_atomic_store_relaxed(&ptls->gc_num.freecall, 0);
}
}
}
Expand Down