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
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn ___lock(what: c_int, _ctx: &mut Ctx) {
|
2019-01-23 10:54:03 -08:00
|
|
|
debug!("emscripten::___lock {}", what);
|
2018-11-28 22:02:25 -08:00
|
|
|
}
|
2018-11-24 15:55:21 +01:00
|
|
|
|
|
|
|
// NOTE: Not implemented by Emscripten
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn ___unlock(what: c_int, _ctx: &mut Ctx) {
|
2019-01-23 10:54:03 -08:00
|
|
|
debug!("emscripten::___unlock {}", what);
|
2018-11-28 22:02:25 -08:00
|
|
|
}
|
2018-12-13 19:28:30 +01:00
|
|
|
|
|
|
|
// NOTE: Not implemented by Emscripten
|
2019-02-02 15:28:50 -08:00
|
|
|
pub fn ___wait(_which: u32, _varargs: u32, _three: u32, _four: u32, _ctx: &mut Ctx) {
|
2018-12-13 19:28:30 +01:00
|
|
|
debug!("emscripten::___wait");
|
|
|
|
}
|