blob: 864344dc9bb9c442ea9c85c3cdccaeea9de68bff (
plain)
1
2
3
4
5
6
7
8
|
/// This struct describes the handful of fields that Lucet-compiled programs may directly interact with, but
/// are provided through VMContext.
#[repr(C)]
#[repr(align(8))]
pub struct InstanceRuntimeData {
pub globals_ptr: *mut i64,
pub instruction_count: u64,
}
|