diff options
author | Koichi Sasada <[email protected]> | 2020-12-21 02:20:57 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2020-12-21 02:21:33 +0900 |
commit | 7600f69a8e7955fc2ba3ef83d0c9fa019114216e (patch) | |
tree | b94ac36872328a12112580d393621eb1dd2c5922 | |
parent | 9c73c756244fa27ffa99d81dcc73a4ad14198002 (diff) |
rename to rb_ractor_make_shareable_copy()
from rb_ractor_make_copy_shareable().
-rw-r--r-- | ractor.c | 2 | ||||
-rw-r--r-- | ractor.rb | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2440,7 +2440,7 @@ rb_ractor_make_shareable(VALUE obj) } VALUE -rb_ractor_make_copy_shareable(VALUE obj) +rb_ractor_make_shareable_copy(VALUE obj) { VALUE copy = ractor_copy(obj); rb_obj_traverse(copy, @@ -748,7 +748,7 @@ class Ractor def self.make_shareable obj, copy: false if copy __builtin_cexpr! %q{ - rb_ractor_make_copy_shareable(obj); + rb_ractor_make_shareable_copy(obj); } else __builtin_cexpr! %q{ |