File tree Expand file tree Collapse file tree 7 files changed +5
-7
lines changed Expand file tree Collapse file tree 7 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
# 1.0 RC 14
2
2
3
+ Bug fixes:
4
+
5
+ * Implement ` rb_io_wait_writable ` (#1586 ).
6
+
3
7
Changes:
4
8
5
9
* ` -Xoptions ` has been removed - use ` --help:languages ` instead.
Original file line number Diff line number Diff line change 1
- fails:C-API Class function rb_call_super calls the method in the superclass through two native levels
2
1
fails(autoload):C-API Class function rb_path2class resolves autoload constants
3
2
fails(autoload):C-API Class function rb_path_to_class resolves autoload constants
Original file line number Diff line number Diff line change 1
1
fails(uses-fork):C-API Kernel function rb_set_end_proc runs a C function on shutdown
2
- fails:C-API Kernel function rb_yield rb_yield to block passed to enumerator
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- fails:C-API Struct function rb_struct_define_under returns the member names as Symbols
2
1
fails:C-API Struct function rb_struct_define raises an ArgumentError if arguments contain duplicate member name
3
2
fails:C-API Struct function rb_struct_getmember returns the value of a struct member
4
3
fails:C-API Struct function rb_struct_getmember raises a NameError if the struct member does not exist
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2531,7 +2531,7 @@ int rb_io_wait_writable(int fd) {
2531
2531
#if defined(EWOULDBLOCK ) && EWOULDBLOCK != EAGAIN
2532
2532
case EWOULDBLOCK :
2533
2533
#endif
2534
- rb_tr_error ( "rb_io_wait_writable wait case not implemented" );
2534
+ rb_thread_fd_writable ( fd );
2535
2535
return true;
2536
2536
2537
2537
default :
You can’t perform that action at this time.
0 commit comments