Sumit Kumar
Sumit Kumar
Some linters like [clang-format](https://clang.llvm.org/docs/ClangFormat.html), [black](https://github.com/psf/black), etc. return non-zero exit code after they have applied fixes. Since, lint-staged automatically do `git add` only if command returns with zero exit code, instead...
@sbc100 @kripken Any thought on this?
Sorry to not provide complete details about the issue. I am doing an **async** proxy to the detached thread. My main application thread isn't the main UI thread. I instantiate...
> To be clear this is not some kind of regression? i.e. you are not claiming that some previous version of emscripten had a faster version of `MAIN_THREAD_EM_ASM`? > >...
Yes list of JS contexts is correct. I create the worker instantiating wasm using `new Worker` API as you mentioned and communicate with it through `postMessage` from the main UI...
I have highlighted the delay in red rectangle below. As can be seen background thread (below one) is just wating till the main application thread (above one) has received the...
Sorry for replying late. I tried multiple approaches to build the reproducer but failed to do so. While trying to build the reproducer, I did both profiling and added logs...
> By the way I see that you have `.worker.js` in your filename. Does that mean you are using a version of emscripten before #21701 landed (this change removed the...
> Were you able to build a reproducer? > > If you are able to run experiments, can you confirm if the issue also occurs when you run the main...
@sbc100 Porting tests is currently infeasible for us. I was looking more into re-using module instance. Currently, we have a wrapper js (e.g. `proxy.js`) which has its own logic and...