#garbage-collection
Wiki 4
- A Simplified Model of Fil-C Walks through how Fil-C makes C/C++ memory-safe — shadow AllocationRecord pointers, parallel "invisible bytes" for heap pointers, and a GC
- Garbage Collection Without Unsafe Code Fitzgerald's safe-gc library implements a Rust GC with zero unsafe code by routing every access through Heap indexing instead of pointer deref
- Golang's goroutine leak profiler Go 1.27's goroutineleak profile reuses the GC's mark phase to find goroutines blocked forever on channels and sync primitives, in production
- Watching Green Tea move through the Golang heap Phil Eaton measures Golang 1.26's Green Tea GC with perf, and the sparse pages it can't reclaim
Toolbox 1
- safe-gc Rust crate offering a garbage-collected heap with zero unsafe code, in the API or internally