mmtk 0.33.0

MMTk is a framework for the design and implementation of high-performance and portable memory managers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(any(target_os = "linux", target_os = "macos", target_os = "android"))]
pub(crate) mod unix_like;

#[cfg(target_os = "linux")]
pub use unix_like::linux_like::linux::Linux as OS;

#[cfg(target_os = "android")]
pub use unix_like::linux_like::android::Android as OS;

#[cfg(target_os = "macos")]
pub use unix_like::macos::MacOS as OS;