From eebe06ec4a94594921e70c09d773b4ef14cecca3 Mon Sep 17 00:00:00 2001 From: Kunal Sareen Date: Fri, 29 Nov 2024 00:19:57 +0000 Subject: [PATCH] Oops. Forgot to add the feature to Cargo.toml --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 20486c341c..10e892e955 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -145,8 +145,6 @@ sticky_immix_non_moving_nursery = [] immix_stress_copying = [] # Reduce block size for ImmixSpace. This mitigates fragmentation when defrag is disabled. immix_smaller_block = [] -# Zero the unmarked lines after a GC cycle in immix. This helps debug untraced objects. -immix_zero_on_release = [] # Run sanity GC sanity = [] @@ -160,6 +158,9 @@ nogc_no_zeroing = ["nogc_lock_free"] # Q: Why do we need this as a compile time flat? We can always set the number of GC threads through options. single_worker = [] +# Poison dead objects on release. Each space uses a different poison value. This helps debug untraced objects. +poison_on_release = [] + # To run expensive comprehensive runtime checks, such as checking duplicate edges extreme_assertions = []