diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-08-28 16:05:11 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-08-28 16:05:11 +0000 |
commit | c5e4070c9268efbdea93da38d665f1341bdc9887 (patch) | |
tree | 155937b330f4754fd6c1f45c3354d421484ea518 /gc.c | |
parent | 4446f52896cd093cc86922cf6ad2422414e25cd6 (diff) | |
download | ruby-c5e4070c9268efbdea93da38d665f1341bdc9887.tar.gz |
Increase STACKFRAME_FOR_CALL_CFUNC
On below env, miniruby requires 568 and ruby requires 838 to pass.
* ruby -v: ruby 2.5.0dev (2017-08-28 trunk 59670) [x86_64-freebsd10.3]
* gcc8 (FreeBSD Ports Collection) 8.0.0 20170828 (experimental)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59676 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4033,7 +4033,7 @@ stack_check(rb_thread_t *th, int water_mark) #define stack_check(th, water_mark) FALSE #endif -#define STACKFRAME_FOR_CALL_CFUNC 512 +#define STACKFRAME_FOR_CALL_CFUNC 838 int rb_threadptr_stack_check(rb_thread_t *th) |