From 272e5b7cc582bb0cc81f29957a17011e1e7367bd Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Thu, 2 Oct 2025 10:19:17 -0700 Subject: [DOC] Remove now inaccurate comment about blocking Originally ractor_next_id used a VM_LOCK, but now it is an atomic and won't block. --- ractor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ractor.c b/ractor.c index c439f25e85..43a7f6c140 100644 --- a/ractor.c +++ b/ractor.c @@ -514,7 +514,6 @@ ractor_create(rb_execution_context_t *ec, VALUE self, VALUE loc, VALUE name, VAL rb_ractor_t *r = RACTOR_PTR(rv); ractor_init(r, name, loc); - // can block here r->pub.id = ractor_next_id(); RUBY_DEBUG_LOG("r:%u", r->pub.id); -- cgit v1.2.3