Skip to content

Commit

Permalink
Oops. Forgot to add the feature to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
k-sareen committed Nov 29, 2024
1 parent 7f2b2c6 commit eebe06e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand All @@ -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 = []

Expand Down

0 comments on commit eebe06e

Please sign in to comment.