aboutsummaryrefslogtreecommitdiffstats
path: root/inits.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-18 00:36:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-18 00:36:37 +0000
commit4cd2a4d74aa8f4ecb742208b0d083ff2417d8858 (patch)
treee59a7f79c7c57ea290233b2e6d47078dfeb9393b /inits.c
parent11548f925390fc72d04be5276bc1fe77f99ddd02 (diff)
downloadruby-4cd2a4d74aa8f4ecb742208b0d083ff2417d8858.tar.gz
vm_method.c: configurable global method cache size
* vm_method.c (Init_Method): make global method cache size configurable by environment variable "RUBY_GLOBAL_METHOD_CACHE_SIZE" [Fix GH-719] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'inits.c')
-rw-r--r--inits.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/inits.c b/inits.c
index da8cfb1ed9..458eb64b1e 100644
--- a/inits.c
+++ b/inits.c
@@ -17,6 +17,7 @@
void
rb_call_inits(void)
{
+ CALL(Method);
CALL(RandomSeed);
CALL(sym);
CALL(var_tables);