re PR go/61871 (FAIL: regexp from libgo testsuite on non-split stack targets)
PR go/61871 runtime: Increase stack size on 64-bit non-split-stack systems. From Uros Bizjak. From-SVN: r219192
This commit is contained in:
parent
248d139137
commit
24fa8749bb
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ extern void __splitstack_block_signals_context (void *context[10], int *,
|
|||
#if defined(USING_SPLIT_STACK) && defined(LINKER_SUPPORTS_SPLIT_STACK)
|
||||
# define StackMin PTHREAD_STACK_MIN
|
||||
#else
|
||||
# define StackMin 2 * 1024 * 1024
|
||||
# define StackMin ((sizeof(char *) < 8) ? 2 * 1024 * 1024 : 4 * 1024 * 1024)
|
||||
#endif
|
||||
|
||||
uintptr runtime_stacks_sys;
|
||||
|
|
Loading…
Add table
Reference in a new issue