From aeae6e2842e1702dfb89b8ae69b48c4f5f64c662 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Fri, 5 Nov 2021 09:51:53 -0400 Subject: [Feature #18290] Remove all usages of rb_gc_force_recycle This commit removes usages of rb_gc_force_recycle since it is a burden to maintain and makes changes to the GC difficult. --- thread_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 102b15d156..6f0cc3d54c 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -1684,7 +1684,7 @@ native_set_thread_name(rb_thread_t *th) name = p + 1; n = snprintf(buf, sizeof(buf), "%s:%d", name, NUM2INT(RARRAY_AREF(loc, 1))); - rb_gc_force_recycle(loc); /* acts as a GC guard, too */ + RB_GC_GUARD(loc); len = (size_t)n; if (len >= sizeof(buf)) { -- cgit v1.2.1