mmtk 0.3.2

MMTk is a framework for the design and implementation of high-performance and portable memory managers.
Documentation
//! A general scheduler implementation. MMTk uses it to schedule GC-related work.

mod context;
mod mmtk_context;
#[allow(clippy::module_inception)]
mod scheduler;
pub mod stat;
mod work;
mod work_bucket;
mod worker;

pub use context::*;
pub use mmtk_context::*;
pub use scheduler::*;
pub use work::*;
pub use work_bucket::WorkBucketStage;
pub use worker::*;

pub mod gc_work;