mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-28 17:41:20 +00:00
18 lines
482 B
Rust
18 lines
482 B
Rust
use libc::c_int;
|
|
use wasmer_runtime_core::vm::Ctx;
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___lock(what: c_int, _ctx: &mut Ctx) {
|
|
debug!("emscripten::___lock {}", what);
|
|
}
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___unlock(what: c_int, _ctx: &mut Ctx) {
|
|
debug!("emscripten::___unlock {}", what);
|
|
}
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___wait(_which: u32, _varargs: u32, _three: u32, _four: u32, _ctx: &mut Ctx) {
|
|
debug!("emscripten::___wait");
|
|
}
|