Added description of offset_guard_size

This commit is contained in:
Syrus 2018-12-14 19:57:00 -08:00
parent 7e78d3c661
commit 1057131bc7

View File

@ -26,6 +26,8 @@ pub struct LinearMemory {
// to set a maximum.
maximum: Option<u32>,
// The size of the extra guard pages after the end.
// Is used to optimize loads and stores with constant offsets.
offset_guard_size: usize,
}