summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-27 09:28:48 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-27 15:40:27 +0900
commit82191da2a28c8da0f1049ca6d814c9da992c39a1 (patch)
tree3a96ecfaa033b158655be52d1df4eb4b8f56264b
parent03e7fc895e9dbe420cad192f1ba679df558640dd (diff)
downloadruby-82191da2a28c8da0f1049ca6d814c9da992c39a1.tar.gz
Predefine recursive key ID
-rw-r--r--defs/id.def1
-rw-r--r--thread.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/defs/id.def b/defs/id.def
index cf359c12b1..506dc95050 100644
--- a/defs/id.def
+++ b/defs/id.def
@@ -25,6 +25,7 @@ firstline, predefined = __LINE__+1, %[\
send
__send__
__attached__
+ __recursive_key__
initialize
initialize_copy
initialize_clone
diff --git a/thread.c b/thread.c
index ec67bba2d5..1232129935 100644
--- a/thread.c
+++ b/thread.c
@@ -3484,7 +3484,7 @@ rb_thread_to_s(VALUE thread)
}
/* variables for recursive traversals */
-static ID recursive_key;
+#define recursive_key id__recursive_key__
static VALUE
threadptr_local_aref(rb_thread_t *th, ID id)
@@ -5529,7 +5529,6 @@ Init_Thread(void)
rb_define_const(cThGroup, "Default", th->thgroup);
}
- recursive_key = rb_intern_const("__recursive_key__");
rb_eThreadError = rb_define_class("ThreadError", rb_eStandardError);
/* init thread core */