diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-04-24 12:52:57 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-04-24 13:02:01 +0900 |
commit | f1a52d96a59c63d46cb23af60cdcaf38e30e0512 (patch) | |
tree | cb0492f778489449a04534df6fac82823cb25b5b /inits.c | |
parent | 2ef66737081ec029f9c82e11671de36bb70a9e3b (diff) | |
download | ruby-f1a52d96a59c63d46cb23af60cdcaf38e30e0512.tar.gz |
Defer setting gc_stress until inits done
[Bug #15784]
Diffstat (limited to 'inits.c')
-rw-r--r-- | inits.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -67,5 +67,6 @@ rb_call_inits(void) CALL(vm_trace); CALL(vm_stack_canary); CALL(ast); + CALL(gc_stress); } #undef CALL |