We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe7f60 commit da14c4aCopy full SHA for da14c4a
Zend/zend_call_stack.h
@@ -83,9 +83,9 @@ static inline size_t zend_call_stack_default_size(void)
83
#ifdef __APPLE__
84
// https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/Multithreading/CreatingThreads/CreatingThreads.html
85
if (pthread_main_np()) {
86
- return 512 * 1024;
+ return 8 * 1024 * 1024;
87
}
88
- return 8 * 1024 * 1024;
+ return 512 * 1024;
89
#endif
90
91
return 2 * 1024 * 1024;
0 commit comments