wasmer/lib/emscripten/emtests/test_main_thread_async_em_asm.cpp

17 lines
601 B
C++
Raw Normal View History

2018-12-27 07:46:41 +00:00
// 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");
}