LibJS: Further increase the free stack limit to 256 KiB
128 KiB seems to not be enough for CI.
This commit is contained in:
parent
af57bd5cca
commit
3ac4b02604
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/3ac4b02604 Pull-request: https://github.com/SerenityOS/serenity/pull/23270
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue