diff options
| author | Samuel Williams <samuel.williams@oriontransfer.co.nz> | 2025-05-13 19:02:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-13 19:02:03 +0900 |
| commit | 425fa0aeb5ced20c03b2d5edb7a409666363ea8f (patch) | |
| tree | 703d21309b8cb8a6b695cd1e78b8aabdca90efc7 /test/ruby | |
| parent | a6435befa76c2ae0525147f934bd9cd1914ffb8a (diff) | |
Make `waiting_fd` behaviour per-IO. (#13127)
- `rb_thread_fd_close` is deprecated and now a no-op.
- IO operations (including close) no longer take a vm-wide lock.
Notes
Notes:
Merged-By: ioquatix <samuel@codeotaku.com>
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_io.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 32d7519bdf..a81d689355 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -3826,7 +3826,7 @@ __END__ end tempfiles = [] - (0..fd_setsize+1).map {|i| + (0...fd_setsize).map {|i| tempfiles << Tempfile.create("test_io_select_with_many_files") } |
