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 418cdc0 commit 69f6c74Copy full SHA for 69f6c74
Zend/zend_call_stack.h
@@ -73,8 +73,11 @@ static inline size_t zend_call_stack_default_size(void)
73
#ifdef __linux__
74
return 8 * 1024 * 1024;
75
#endif
76
-#ifdef __FreeBSD__
77
- return 8 * 1024 * 1024;
+#if defined(__FreeBSD__) || defined(__NetBSD__)
+ return 4 * 1024 * 1024;
78
+#endif
79
+#ifdef __OpenBSD__
80
+ return 512 * 1024;
81
82
#ifdef __APPLE__
83
// https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/Multithreading/CreatingThreads/CreatingThreads.html
0 commit comments