Skip to content

Commit 9a53bd5

Browse files
nia-eRalfJung
andcommitted
Update src/alloc/isolated_alloc.rs
Co-authored-by: Ralf Jung <[email protected]>
1 parent 47c4873 commit 9a53bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/alloc/isolated_alloc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use std::sync;
33

44
static ALLOCATOR: sync::Mutex<IsolatedAlloc> = sync::Mutex::new(IsolatedAlloc::empty());
55

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.
6+
/// A dedicated allocator for interpreter memory contents, ensuring they are stored on dedicated
7+
/// pages (not mixed with Miri's own memory). This is very useful for native-lib mode.
88
#[derive(Debug)]
99
pub struct IsolatedAlloc {
1010
/// Pointers to page-aligned memory that has been claimed by the allocator.

0 commit comments

Comments
 (0)