From e4ae96a805a2548bdd00d34517dbefa0398b1972 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 26 Aug 2025 15:59:38 -0700 Subject: [PATCH] Remove references to emscripten_proxy_execute_task_queue. NFC This function has not existing since #18852. --- tools/emscripten.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/emscripten.py b/tools/emscripten.py index d9d9293cf560b..112e7eeb77d06 100644 --- a/tools/emscripten.py +++ b/tools/emscripten.py @@ -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): @@ -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',