Quellcode durchsuchen

LibJS: Further increase the free stack limit to 256 KiB

128 KiB seems to not be enough for CI.
Timothy Flynn vor 1 Jahr
Ursprung
Commit
3ac4b02604
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      Userland/Libraries/LibJS/Runtime/VM.h

+ 1 - 1
Userland/Libraries/LibJS/Runtime/VM.h

@@ -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.