You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By looking at
Main_executor.hpp, for Emscripten case, if seems falls back to use default_executor. To my knowledge jobs will be run in secondary threads in default_executor. So need main executor guarantee the job will be scheduled to the main thread sharing the semantic for other platform.
#elif STLAB_MAIN_EXECUTOR == STLAB_MAIN_EXECUTOR_EMSCRIPTEN
using main_executor_type = default_executor_type;
Also. #elif STLAB_MAIN_EXECUTOR == STLAB_MAIN_EXECUTOR_PORTABLE
#if APPLE not define, the implementation is not complete
The text was updated successfully, but these errors were encountered:
keminming
changed the title
Main executor on WASM doesn't seems to be fully implemented
Main executor for WASM doesn't seems to be fully implemented
Mar 19, 2021
By looking at
Main_executor.hpp, for Emscripten case, if seems falls back to use default_executor. To my knowledge jobs will be run in secondary threads in default_executor. So need main executor guarantee the job will be scheduled to the main thread sharing the semantic for other platform.
#elif STLAB_MAIN_EXECUTOR == STLAB_MAIN_EXECUTOR_EMSCRIPTEN
using main_executor_type = default_executor_type;
Also. #elif STLAB_MAIN_EXECUTOR == STLAB_MAIN_EXECUTOR_PORTABLE
#if APPLE not define, the implementation is not complete
The text was updated successfully, but these errors were encountered: