Precise tracing garbage collector built in Rust featuring parallel marking and mark&sweep algorithm.
To include in your project, add the following to your Cargo.toml:
toml
[dependencies]
pgc = "*"
This can be used pretty much like Rc, with the exception of interior mutability.
Types placed inside a Gc
and Rooted
must implement GcObject
and Send
.
```rust
use pgc::*;
struct Foo {
x: Gc
unsafe impl GcObject for Foo {
fn references(&self) -> Vec
To use Gc
simply call Gc::new
:
rust
let foo = Gc::new(Foo {...});
GC does not scan program stack for root objects so you should add roots explicitly:
rust
let foo = Gc::new(Foo {...});
add_root(foo);
... // do something with `foo`
remove_root(foo);
// Or use `Rooted` struct that will unroot object automatically:
let foo = Rooted:new(Foo {...});
gc_mark
in your code.