mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
23 lines
588 B
Rust
23 lines
588 B
Rust
use libc::c_int;
|
|
use wasmer_runtime_core::vm::Ctx;
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___lock(_ctx: &mut Ctx, _what: c_int) {
|
|
debug!("emscripten::___lock {}", _what);
|
|
}
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___unlock(_ctx: &mut Ctx, _what: c_int) {
|
|
debug!("emscripten::___unlock {}", _what);
|
|
}
|
|
|
|
// NOTE: Not implemented by Emscripten
|
|
pub fn ___wait(_ctx: &mut Ctx, _which: u32, _varargs: u32, _three: u32, _four: u32) {
|
|
debug!("emscripten::___wait");
|
|
}
|
|
|
|
pub fn _flock(_ctx: &mut Ctx, _fd: u32, _op: u32) -> u32 {
|
|
debug!("emscripten::_flock");
|
|
0
|
|
}
|