specify units for fields of Tunables (#930)

...since the documentation in `impl Default for Tunables` doesn't get
translated anywhere, and the various fields have different units anyway.
This commit is contained in:
Nathan Froyd
2020-02-07 17:41:20 -05:00
committed by GitHub
parent dfef71ea5f
commit d42560c7bf

View File

@@ -1,13 +1,13 @@
/// Tunable parameters for WebAssembly compilation. /// Tunable parameters for WebAssembly compilation.
#[derive(Clone)] #[derive(Clone)]
pub struct Tunables { pub struct Tunables {
/// For static heaps, the size of the heap protected by bounds checking. /// For static heaps, the size in wasm pages of the heap protected by bounds checking.
pub static_memory_bound: u32, pub static_memory_bound: u32,
/// The size of the offset guard for static heaps. /// The size in bytes of the offset guard for static heaps.
pub static_memory_offset_guard_size: u64, pub static_memory_offset_guard_size: u64,
/// The size of the offset guard for dynamic heaps. /// The size in bytes of the offset guard for dynamic heaps.
pub dynamic_memory_offset_guard_size: u64, pub dynamic_memory_offset_guard_size: u64,
} }