Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/jit-icache-coherence/src/miri.rs
1691 views
1
pub use anyhow::Result;
2
use std::ffi::c_void;
3
4
pub(crate) fn pipeline_flush_mt() -> Result<()> {
5
Ok(())
6
}
7
8
pub(crate) fn clear_cache(_ptr: *const c_void, _len: usize) -> Result<()> {
9
Ok(())
10
}
11
12