Skip to content

Commit 2a132d7

Browse files
committed
Increase default stack size for linux platforms without working HAVE_PTHREAD_GETATTR_NP
Change-Id: I861a3039816c368e6a8823a70f75c2119e417c7f
1 parent 7817651 commit 2a132d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ _Py_ReachedRecursionLimitWithMargin(PyThreadState *tstate, int margin_count)
6060
#elif defined(__hppa__) || defined(__powerpc64__)
6161
# define Py_C_STACK_SIZE 2000000
6262
#else
63-
# define Py_C_STACK_SIZE 4000000
63+
# define Py_C_STACK_SIZE 5000000
6464
#endif
6565

6666
#if defined(__EMSCRIPTEN__)

0 commit comments

Comments
 (0)