mmtk/plan/pageprotect/mod.rs
1//! Plan: pageprotect
2//!
3//! Allocate each object on a separate page and protect the memory on release.
4//! This GC is commonly used for debugging purposes.
5
6pub(super) mod gc_work;
7pub(super) mod global;
8pub(super) mod mutator;
9
10pub use self::global::PageProtect;
11pub use self::global::CONSTRAINTS as PP_CONSTRAINTS;