Fixed issues. Updated CHANGELOG

This commit is contained in:
Syrus
2019-04-30 12:05:13 -07:00
parent ce140463d6
commit 747e5321a2
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,7 @@ All PRs to the Wasmer repository must add to this file.
Blocks of changes will separated by version increments. Blocks of changes will separated by version increments.
## **[Unreleased]** ## **[Unreleased]**
- [#409](https://github.com/wasmerio/wasmer/pull/409) Improved Emscripten functions to run JavascriptCore compiled to wasm
- [#399](https://github.com/wasmerio/wasmer/pull/399) Add example of using a plugin extended from WASI - [#399](https://github.com/wasmerio/wasmer/pull/399) Add example of using a plugin extended from WASI
- [#397](https://github.com/wasmerio/wasmer/pull/397) Fix WASI fs abstraction to work on Windows - [#397](https://github.com/wasmerio/wasmer/pull/397) Fix WASI fs abstraction to work on Windows
- [#390](https://github.com/wasmerio/wasmer/pull/390) Pin released wapm version and add it as a git submodule - [#390](https://github.com/wasmerio/wasmer/pull/390) Pin released wapm version and add it as a git submodule

View File

@ -62,7 +62,12 @@ pub fn _pthread_attr_destroy(_ctx: &mut Ctx, _a: i32) -> i32 {
debug!("emscripten::_pthread_attr_destroy"); debug!("emscripten::_pthread_attr_destroy");
0 0
} }
pub fn _pthread_attr_getstack(_ctx: &mut Ctx, _stackaddr: i32, _stacksize: i32, _other: i32) -> i32 { pub fn _pthread_attr_getstack(
_ctx: &mut Ctx,
_stackaddr: i32,
_stacksize: i32,
_other: i32,
) -> i32 {
debug!("emscripten::_pthread_attr_getstack"); debug!("emscripten::_pthread_attr_getstack");
// TODO: Translate from Emscripten // TODO: Translate from Emscripten
// HEAP32[stackaddr >> 2] = STACK_BASE; // HEAP32[stackaddr >> 2] = STACK_BASE;