lucet_module/
runtime.rs

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