Re: [PATCH v2 17/20] util: Add coroutine backend for emscripten

2025-04-22 Thread Stefan Hajnoczi
On Tue, Apr 22, 2025 at 02:27:21PM +0900, Kohei Tokunaga wrote: > Emscripten does not support couroutine methods currently used by QEMU but > provides a coroutine implementation called "fiber". This commit introduces a > coroutine backend using fiber. Note that fiber does not support submitting > c

[PATCH v2 17/20] util: Add coroutine backend for emscripten

2025-04-21 Thread Kohei Tokunaga
Emscripten does not support couroutine methods currently used by QEMU but provides a coroutine implementation called "fiber". This commit introduces a coroutine backend using fiber. Note that fiber does not support submitting coroutines to other threads. Signed-off-by: Kohei Tokunaga --- MAINTAI