summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-12-22 12:59:47 +0900
committerKoichi Sasada <ko1@atdot.net>2020-12-22 12:59:47 +0900
commit7204b81bcb13f84ca3cc34384d205565fd5ad381 (patch)
tree7113ffda0be6882e78dd064587966ef323035856 /thread.c
parent2e1cdf36ba950fef3f7d6fc215835ce3027699f4 (diff)
fix to use rb_ractor_id()
Catch up recent changes on USE_RUBY_DEBUG_LOG=1.
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index e60d71f75a..a7cd6e4c28 100644
--- a/thread.c
+++ b/thread.c
@@ -980,7 +980,7 @@ thread_create_core(VALUE thval, struct thread_create_params *params)
rb_native_mutex_initialize(&th->interrupt_lock);
- RUBY_DEBUG_LOG("r:%u th:%p", th->ractor->id, th);
+ RUBY_DEBUG_LOG("r:%u th:%p", rb_ractor_id(th->ractor), th);
rb_ractor_living_threads_insert(th->ractor, th);