wasmer/lib/emscripten/src/lock.rs

18 lines
482 B
Rust
Raw Normal View History

2018-11-27 04:29:26 +00:00
use libc::c_int;
2019-01-23 07:27:13 +00:00
use wasmer_runtime_core::vm::Ctx;
2018-11-24 14:55:21 +00:00
// NOTE: Not implemented by Emscripten
pub fn ___lock(what: c_int, _ctx: &mut Ctx) {
2019-01-23 18:54:03 +00:00
debug!("emscripten::___lock {}", what);
}
2018-11-24 14:55:21 +00:00
// NOTE: Not implemented by Emscripten
pub fn ___unlock(what: c_int, _ctx: &mut Ctx) {
2019-01-23 18:54:03 +00:00
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");
}