Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (30 loc) · 814 Bytes

File metadata and controls

35 lines (30 loc) · 814 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <emscripten.h>
#include <emscripten/wasm_worker.h>
#include <assert.h>
thread_local int tls = 1;
void main_thread_func()
{
assert(!emscripten_current_thread_is_wasm_worker());
EM_ASM(out($0), tls);
#ifdef REPORT_RESULT
REPORT_RESULT(tls);
#endif
}
void worker_main()
{
assert(emscripten_current_thread_is_wasm_worker());
assert(tls != 42);
assert(tls != 0);
assert(tls == 1);
tls = 123456; // Try to write garbage data to the memory location.
emscripten_wasm_worker_post_function_v(0, main_thread_func);
}
char stack[1024];
int main()
{
EM_ASM(out($0), tls);
assert(!emscripten_current_thread_is_wasm_worker());
tls = 42;
emscripten_wasm_worker_t worker = emscripten_create_wasm_worker(stack, sizeof(stack));
emscripten_wasm_worker_post_function_v(worker, worker_main);
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.