A garbage collected heap for a virtual machine written in rust
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src marked trace interfaces as unsafe, added used_size Dec 23, 2018
.gitignore
Cargo.toml
LICENSE
README.md

README.md

Managed Heap

An implementation of virtual heap, inspired by VMs like the JVM. Currently supports automatic garbage collection, but no defragmentation.

Usage

Since the crate is still WIP, there is no documentation. You can look into the tests mod in src/managed.rs for examples though.