blob: 86f268db0dbf42eefd831993115e1e00ada8e15f [file] [log] [blame] [edit]
/*
* 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 <pthread.h>
#include <emscripten.h>
#include <emscripten/html5.h>
void *thread_main(void *arg)
{
EM_ASM(out('hello from thread!'));
#ifdef REPORT_RESULT
REPORT_RESULT(1);
#endif
return 0;
}
int main()
{
pthread_t thread;
pthread_create(&thread, NULL, thread_main, NULL);
emscripten_unwind_to_js_event_loop();
}