Title: [258463] trunk/Source/_javascript_Core
Revision
258463
Author
[email protected]
Date
2020-03-14 00:03:58 -0700 (Sat, 14 Mar 2020)

Log Message

Unreviewed. Fix windows build by making configSizeToProtect stay 4KB.

* runtime/JSCConfig.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (258462 => 258463)


--- trunk/Source/_javascript_Core/ChangeLog	2020-03-14 06:43:46 UTC (rev 258462)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-03-14 07:03:58 UTC (rev 258463)
@@ -1,3 +1,9 @@
+2020-03-14  Saam Barati  <[email protected]>
+
+        Unreviewed. Fix windows build by making configSizeToProtect stay 4KB.
+
+        * runtime/JSCConfig.h:
+
 2020-03-13  Saam Barati  <[email protected]>
 
         configSizeToProtect should be 16KB

Modified: trunk/Source/_javascript_Core/runtime/JSCConfig.h (258462 => 258463)


--- trunk/Source/_javascript_Core/runtime/JSCConfig.h	2020-03-14 06:43:46 UTC (rev 258462)
+++ trunk/Source/_javascript_Core/runtime/JSCConfig.h	2020-03-14 07:03:58 UTC (rev 258463)
@@ -34,7 +34,11 @@
 class FixedVMPoolExecutableAllocator;
 class VM;
 
+#if !OS(WINDOWS)
 constexpr size_t ConfigSizeToProtect = 16 * KB;
+#else
+constexpr size_t ConfigSizeToProtect = 4 * KB;
+#endif
 
 #if ENABLE(SEPARATED_WX_HEAP)
 using JITWriteSeparateHeapsFunction = void (*)(off_t, const void*, size_t);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to