summaryrefslogtreecommitdiff
path: root/gc/gc_impl.h
diff options
context:
space:
mode:
authorJean Boussier <[email protected]>2025-03-31 11:29:06 +0200
committerJean Boussier <[email protected]>2025-03-31 12:01:55 +0200
commit7db0e07134c9ff9e1da090053041b670f3206de4 (patch)
tree2daf03b01f6450170ae0490d88d9bf64aae5199f /gc/gc_impl.h
parent0350290262ea0fbc4e1807901797ee8a6970c2b9 (diff)
Don't preserve `object_id` when moving object to another Ractor
That seemed like the logical thing to do to me, but ko1 disagree.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13008
Diffstat (limited to 'gc/gc_impl.h')
-rw-r--r--gc/gc_impl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/gc/gc_impl.h b/gc/gc_impl.h
index 02ad160cbd..bf2b34f8d9 100644
--- a/gc/gc_impl.h
+++ b/gc/gc_impl.h
@@ -103,7 +103,6 @@ GC_IMPL_FN void rb_gc_impl_shutdown_call_finalizer(void *objspace_ptr);
// Object ID
GC_IMPL_FN VALUE rb_gc_impl_object_id(void *objspace_ptr, VALUE obj);
GC_IMPL_FN VALUE rb_gc_impl_object_id_to_ref(void *objspace_ptr, VALUE object_id);
-GC_IMPL_FN void rb_gc_impl_object_id_move(void *objspace_ptr, VALUE dest, VALUE src);
// Forking
GC_IMPL_FN void rb_gc_impl_before_fork(void *objspace_ptr);
GC_IMPL_FN void rb_gc_impl_after_fork(void *objspace_ptr, rb_pid_t pid);