diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-11-12 23:23:02 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-11-12 14:26:19 +0000 |
| commit | 6a055451843d28b9d75f581328cbdf6f03bea343 (patch) | |
| tree | 669171a63787cc5ce0bee810b1570b2ae25ec88b | |
| parent | ff4f9b88515babb34985521339b1410608c78589 (diff) | |
[ruby/io-wait] No method definition is always ractor-safe
https://github.com/ruby/io-wait/commit/44b68fc51b
| -rw-r--r-- | ext/io/wait/wait.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/ext/io/wait/wait.c b/ext/io/wait/wait.c index 86b7d25e96..22f372aa9a 100644 --- a/ext/io/wait/wait.c +++ b/ext/io/wait/wait.c @@ -11,19 +11,11 @@ **********************************************************************/ -#include "ruby.h" -#include "ruby/io.h" - - /* - * IO wait methods + * IO wait methods are built in ruby now, just for backward compatibility. */ void Init_wait(void) { -#ifdef HAVE_RB_EXT_RACTOR_SAFE - RB_EXT_RACTOR_SAFE(true); -#endif - } |
