mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
17 lines
601 B
C++
Vendored
17 lines
601 B
C++
Vendored
// Copyright 2017 The Emscripten Authors. All rights reserved.
|
|
// Emscripten is available under two separate licenses, the MIT license and the
|
|
// University of Illinois/NCSA Open Source License. Both these licenses can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <emscripten.h>
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
// Test that on main browser thread, MAIN_THREAD_ASYNC_EM_ASM() will get
|
|
// synchronously executed.
|
|
printf("Before MAIN_THREAD_ASYNC_EM_ASM\n");
|
|
MAIN_THREAD_ASYNC_EM_ASM(out('Inside MAIN_THREAD_ASYNC_EM_ASM: ' + $0 + ' ' + $1), 42, 3.5);
|
|
printf("After MAIN_THREAD_ASYNC_EM_ASM\n");
|
|
}
|