Added pthread_self emscripten method

This commit is contained in:
Syrus
2019-07-06 17:41:03 -07:00
parent b1f868dc52
commit f5af920724
2 changed files with 5 additions and 0 deletions

View File

@ -161,6 +161,10 @@ pub fn _pthread_join(_ctx: &mut Ctx, _a: i32, _b: i32) -> i32 {
trace!("emscripten::_pthread_join");
0
}
pub fn _pthread_self(_ctx: &mut Ctx) -> i32 {
trace!("emscripten::_pthread_self");
0
}
pub fn _pthread_key_create(_ctx: &mut Ctx, _a: i32, _b: i32) -> i32 {
trace!("emscripten::_pthread_key_create");
0