add the syscall and create a test

This commit is contained in:
Mackenzie Clark
2019-02-22 12:32:14 -08:00
parent c9969f269c
commit ad3d361f76
6 changed files with 44 additions and 0 deletions

View File

@ -48,6 +48,10 @@ use std::slice;
// Other platforms do otherwise.
#[cfg(target_os = "darwin")]
use libc::SO_NOSIGPIPE;
use crate::utils::copy_cstr_into_wasm;
use crate::env::get_emscripten_data;
use std::ffi::CString;
#[cfg(not(target_os = "darwin"))]
const SO_NOSIGPIPE: c_int = 0;
@ -186,6 +190,25 @@ pub fn ___syscall110(_ctx: &mut Ctx, _one: i32, _two: i32) -> i32 {
-1
}
// getcwd
pub fn ___syscall183(ctx: &mut Ctx, buf: u32, _size: u32) -> u32 {
debug!("emscripten::___syscall183");
use std::env;
let path = env::current_dir();
match path {
Ok(path_buf) => {
// write path into buffer
let path_string = path_buf.display().to_string();
let path_c_string = CString::new(path_string).unwrap();
let offset = unsafe { copy_cstr_into_wasm(ctx, path_c_string.as_ptr()) };
offset
}
Err(e) => {
unimplemented!()
}
}
}
// mmap2
pub fn ___syscall192(ctx: &mut Ctx, which: c_int, mut varargs: VarArgs) -> c_int {
debug!("emscripten::___syscall192 (mmap2) {}", which);