diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-06 11:41:41 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-06 11:42:43 -0800 |
commit | 20d5ffb5925d57a5facacce453d4643e8809929d (patch) | |
tree | 0fdfca1be241a1792ceaf5c275b674f744a313e2 /tests/mem_init.cpp | |
parent | 1ac8ea0859d91d86c23b5574bd0474887df1b96e (diff) |
add docs and testing for mem init file being async
Diffstat (limited to 'tests/mem_init.cpp')
-rw-r--r-- | tests/mem_init.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/mem_init.cpp b/tests/mem_init.cpp new file mode 100644 index 00000000..e642bfc9 --- /dev/null +++ b/tests/mem_init.cpp @@ -0,0 +1,24 @@ +#include <stdio.h> +#include <emscripten.h> + +extern "C" { + +int noted = 0; + +void EMSCRIPTEN_KEEPALIVE note(int n) { + EM_ASM_({ Module.print([$0, $1]) }, n, noted); + noted = noted | n; + EM_ASM_({ Module.print(['noted is now', $0]) }, noted); + if (noted == 3) { + int result = noted; + REPORT_RESULT(); + } +} + +} + +int main() { + EM_ASM( myJSCallback() ); // calls a global JS func + return 0; +} + |