Boost Coroutines: Increase the default stack size from 64 to 256KB

refs #7532
This commit is contained in:
Michael Friedrich 2019-12-13 17:20:06 +01:00
parent c685b4d269
commit f62f2eb25e
1 changed files with 4 additions and 1 deletions

View File

@ -107,7 +107,10 @@ public:
// Rationale: Low cost Windows agent only & https://github.com/Icinga/icinga2/issues/7431
return 8 * 1024 * 1024;
#else /* _WIN32 */
return boost::coroutines::stack_allocator::traits_type::default_size(); // Default 64 KB
// Increase the stack size for Linux/Unix coroutines for many JSON objects on the stack.
// This may help mitigate possible stack overflows. https://github.com/Icinga/icinga2/issues/7532
return 256 * 1024;
//return boost::coroutines::stack_allocator::traits_type::default_size(); // Default 64 KB
#endif /* _WIN32 */
}