18 lines
482 B
Rust
Raw Normal View History

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