Function mmtk::memory_manager::counted_malloc
source · pub fn counted_malloc<VM: VMBinding>(mmtk: &MMTK<VM>, size: usize) -> Address
Expand description
The standard malloc except that with the feature malloc_counted_size
, MMTk will count the allocated memory into its heap size.
Thus the method requires a reference to an MMTk instance. MMTk either uses its own allocator, or forward the call to a
library malloc.