Manishearth / rust-gc

Simple tracing (mark and sweep) garbage collector for Rust
Mozilla Public License 2.0
962 stars 50 forks source link

Implement Trace and Finalize for sync::Arc and sync::Weak #151

Open hydroper opened 1 year ago

hydroper commented 1 year ago

Trace and Finalize are implemented for std::rc::Rc, but not std::sync::Arc and weak.

andersk commented 1 year ago

The Rc implementations were wrong (#134) and were removed in #153.