Skip to content

Commit 572cba6

Browse files
committed
Implement rb_io_wait_writable().
1 parent e559117 commit 572cba6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/c/cext/ruby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2531,7 +2531,7 @@ int rb_io_wait_writable(int fd) {
25312531
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
25322532
case EWOULDBLOCK:
25332533
#endif
2534-
rb_tr_error("rb_io_wait_writable wait case not implemented");
2534+
rb_thread_fd_writable(fd);
25352535
return true;
25362536

25372537
default:

0 commit comments

Comments
 (0)