Ryan Sepassi
Ryan Sepassi
Understood, thanks for looking into it! Yeah, maybe test with higher durations like 100ms and 500ms locally just to make sure. On Fri, Sep 29, 2023 at 2:25 AM Corentin...
I'm trying to do the same. Current script and source here: https://github.com/rsepassi/zigroot/blob/main/kernel/build.sh The `-MD` problem is this: https://github.com/ziglang/zig/issues/9948 In the linux source tree I replaced `-Wp,-MD,x` with `-MD -MF x`...
I also had to replace instances of `-soname` with `-install_name` and modify some of the linker flag passing to use `-Wl` instead of passing the flags directly.
If you’re inside a coroutine, then it’d be fine. Within a coroutine everything looks like a regular blocking call. You only need to think about xasync and xawait if you...
A few comments: * Consider having select return the index of the resumed coroutine. * Do add/sub actually yield? If they don't, then the chan.send calls will happen in the...
I hit this error today. How are fibers meant to interact with C code? Let's say in C I have an async function `set_timer(seconds, callback)`. I'd like to expose it...
Yes, I understand. My question is about single threaded interaction with an event loop in C. Another way to put it is how would umka interact with libuv? Both Lua...