1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

LibJS: Further increase the free stack limit to 256 KiB

128 KiB seems to not be enough for CI.
This commit is contained in:
Timothy Flynn 2024-02-20 10:02:55 -05:00 committed by Tim Flynn
parent af57bd5cca
commit 3ac4b02604

View file

@ -98,7 +98,7 @@ public:
{
// Address sanitizer (ASAN) used to check for more space but
// currently we can't detect the stack size with it enabled.
return m_stack_info.size_free() < 128 * KiB;
return m_stack_info.size_free() < 256 * KiB;
}
// TODO: Rename this function instead of providing a second argument, now that the global object is no longer passed in.