katei (Yuta Saito)
- Login: katei
- Registered on: 08/25/2021
- Last sign in: 10/08/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 1 | 31 | 32 |
| Reported issues | 0 | 3 | 3 |
Projects
| Project | Roles | Registered on |
|---|---|---|
| Ruby | Committer | 01/17/2022 |
Activity
05/12/2026
-
12:39 PM Ruby Bug #21989 (Closed): Fiber initialization failure on WASI/ruby.wasm raises TypeError instead of FiberError
- Applied in changeset commit:git|0fa6cb88f5e238e819cd663b1edc80db59a74b2a.
----------
[Bug #21989] Fix FiberError init order to precede all possible usage
The `FiberError` class can be used in `fiber_pool_initialize` through
`fiber_pool... -
12:38 PM Ruby Revision 0fa6cb88 (git): [Bug #21989] Fix FiberError init order to precede all possible usage
- The `FiberError` class can be used in `fiber_pool_initialize` through
`fiber_pool_expand` but `FiberError` was defined after
`fiber_pool_initialize` in `Init_Cont`. This commit moves the definition
of `FiberError` before `fiber_pool_init...
10/08/2025
-
11:55 PM Ruby Bug #21626: Backport WASI setjmp handler memory leak fixes
- Thank you for your proposal; it makes sense to me. I have a bit concerns about the number of changes we need to backport, but it should still be worth doing.
Would you mind creating backport PRs to each release branch and running ruby.w...
07/24/2025
-
03:39 AM Ruby Revision 076e51e5 (git): math.c: cleanup unused `#include <errno.h>`
- `errno` is no longer used after 5073155a178a9f478950afef4f148e44fd14b5d6
05/02/2025
-
05:36 PM Ruby Revision 186022d1 (git): wasm: increase the default Asyncify buffer size
- We will need more Asyncify space for the upcoming namespace changes
as it will introduce more local variables and conditional jumps in
asyncify'd functions.
05/01/2025
-
07:10 AM Ruby Revision ab153555 (git): tool/downloader.rb: Stop caching already existing files
- Previously, the script was caching any file already present in the
destination directory, regardless of its origin. This caused issues
when the directory contained files copied from external sources like
`autoreconf --install`.
For exam...
04/17/2025
-
10:47 PM Ruby Revision b4f74e24 (git): [wasm] Fallback to emulated realpath on wasi-libc realpath `ENOTSUP`
- wasi-libc 22 and later support realpath(3)
(https://github.com/WebAssembly/wasi-libc/pull/463) but the underlying
host syscall may return ENOTSUP. This is typically the case when using
incomplete WASI polyfills on web browsers. For such ...
04/01/2025
-
04:11 PM Ruby Revision 30e5e7c0 (git): Revert "Fix jump buffer leak in setjmp handler in WASI builds"
- This reverts the following commits as it's causing OOM in some cases in
ruby/ruby.wasm test suite.
* 372515f33c908b36b3f5fbd2edcb34c69b418500
* 3a730be8b464454878a42132f6fecb98ab4c1b5b
02/19/2025
-
04:54 AM Ruby Revision bd84c75a (git): [wasm] Update WASI SDK to 25
- to include WASI Preview 2 related changes added in the SDK.
-
02:46 AM Ruby Revision eac35edf (git): [wasm] Stop using mprotect(PROT_NONE) on WASI
- we had been using a stub weak definition of `mprotect` in wasm/missing.c
so far, but wasi-sdk 23 added mprotect emulation to wasi-libc[^1], so the
emulation is now linked instead. However, the emulation doesn't support
PROT_NONE and fail...