We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b53ed38 commit dfd0024Copy full SHA for dfd0024
src/discrete_alloc.rs
@@ -7,8 +7,8 @@ use crate::helpers::ToU64;
7
8
static ALLOCATOR: sync::Mutex<MachineAlloc> = sync::Mutex::new(MachineAlloc::empty());
9
10
-/// A distinct allocator for the `MiriMachine`, allowing us to manage its
11
-/// memory separately from that of Miri itself.
+/// A distinct allocator for interpreter memory contents, allowing us to manage its
+/// memory separately from that of Miri itself. This is very useful for native-lib mode.
12
#[derive(Debug)]
13
pub struct MachineAlloc {
14
pages: Vec<*mut u8>,
0 commit comments