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 47c4873 commit 9a53bd5Copy full SHA for 9a53bd5
src/alloc/isolated_alloc.rs
@@ -3,8 +3,8 @@ use std::sync;
3
4
static ALLOCATOR: sync::Mutex<IsolatedAlloc> = sync::Mutex::new(IsolatedAlloc::empty());
5
6
-/// A distinct allocator for interpreter memory contents, allowing us to manage its
7
-/// memory separately from that of Miri itself. This is very useful for native-lib mode.
+/// A dedicated allocator for interpreter memory contents, ensuring they are stored on dedicated
+/// pages (not mixed with Miri's own memory). This is very useful for native-lib mode.
8
#[derive(Debug)]
9
pub struct IsolatedAlloc {
10
/// Pointers to page-aligned memory that has been claimed by the allocator.
0 commit comments