Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions tools/emscripten.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,10 +897,9 @@ def install_debug_wrapper(sym):
return False
# Likewise `__trap` can occur before the runtime is initialized since it is used in
# abort.
# pthread_self and _emscripten_proxy_execute_task_queue are currently called in some
# cases after the runtime has exited.
# pthread_self is currently called in some cases after the runtime has exited.
# TODO: Look into removing these, and improving our robustness around thread termination.
return sym not in {'__trap', 'pthread_self', '_emscripten_proxy_execute_task_queue'}
return sym not in {'__trap', 'pthread_self'}


def should_export(sym):
Expand Down Expand Up @@ -1099,7 +1098,6 @@ def create_pointer_conversion_wrappers(metadata):
'_wasmfs_node_record_dirent': '_pp_',
'__dl_seterr': '_pp',
'_emscripten_run_js_on_main_thread': '__p_p_',
'_emscripten_proxy_execute_task_queue': '_p',
'_emscripten_thread_exit': '_p',
'_emscripten_thread_init': '_p_____',
'_emscripten_thread_free_data': '_p',
Expand Down