[][src]Function wamr_sys::wasm_runtime_get_native_addr_range

pub unsafe extern "C" fn wasm_runtime_get_native_addr_range(
    module_inst: wasm_module_inst_t,
    native_ptr: *mut u8,
    p_native_start_addr: *mut *mut u8,
    p_native_end_addr: *mut *mut u8
) -> bool

Get the native address range (absolute address) that a native address belongs to

@param module_inst the WASM module instance @param native_ptr the native address to retrieve @param p_native_start_addr buffer to output the native start address if not NULL @param p_native_end_addr buffer to output the native end address if not NULL

@return true if success, false otherwise.