Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 495 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 495 Bytes

GC in Rust

This repository was inspired by a lab from CS 240LX. It creates a way to create references to the heap that can be garbage collected. It's very much a demo. The collection is not efficient at all, and it only works for a single thread. The tests are also very brittle - they have to be run at a time and without optimizations to avoid chunks as being considered reachable even though they are not.