diff options
author | Yusuke Endoh <[email protected]> | 2020-02-10 14:13:48 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2020-02-10 14:13:48 +0900 |
commit | 912ef0b5593a1e4edca3a0bad8164f66e05e6662 (patch) | |
tree | a79908d1f835feb405cf6fd35096458eea8abed7 /gc.c | |
parent | 6e6844320de989cb88a154e2ac75066ccea1bba2 (diff) |
Revert "gc.c: make the stack overflow detection earlier under s390x"
This reverts commit a28c166f787710227c6aac54befd72778f041485.
This change didn't help.
According to odaira, the issue was fixed by increasing `ulimit -s`.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -4692,14 +4692,7 @@ stack_check(rb_execution_context_t *ec, int water_mark) #define stack_check(ec, water_mark) FALSE #endif -#ifdef __s390x__ -/* Experimentally make the stack overflow detection earlier under s390x - * https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel_zlinux/ruby-master/log/20200205T223421Z.fail.html.gz - */ -#define STACKFRAME_FOR_CALL_CFUNC 8192 -#else #define STACKFRAME_FOR_CALL_CFUNC 2048 -#endif MJIT_FUNC_EXPORTED int rb_ec_stack_check(rb_execution_context_t *ec) |