Olli Vanhoja

Results 23 comments of Olli Vanhoja

https://github.com/Zeke-OS/zeke/issues/142

What is also being done is moving back to statically allocate as much as possible. This will make the boot procedure faster and more reliable.

This might be an interesting thing to implement but it's not putting us towards making an RTOS-like OS.

deadlock with pipes :(

I think the issue is not that you are running big-endian code but that `char` is unsigned by default on PowerPC (and ARM).

Is this an ECMAScript `import`? I think a commonJS `require` is needed.

Hi, Sorry I have missed this issue. Sounds really good to me. How would that work then, by throwing maybe?

Cool! 👍 Sorry for the delay, it's hard to keep up with all the notifications.

What I have been doing is something like this: ```js await Promise.all(files.map(async (file) => { await sema.acquire(); try { await upload(file); } finally { sema.release(); } })); ```