Title: [229519] trunk/Source/_javascript_Core
- Revision
- 229519
- Author
- [email protected]
- Date
- 2018-03-11 15:05:21 -0700 (Sun, 11 Mar 2018)
Log Message
Disable Sigill crash analyzer on watchOS
https://bugs.webkit.org/show_bug.cgi?id=183548
<rdar://problem/38338032>
Reviewed by Mark Lam.
Sigill is not supported on watchOS.
* runtime/Options.cpp:
(JSC::overrideDefaults):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (229518 => 229519)
--- trunk/Source/_javascript_Core/ChangeLog 2018-03-11 21:09:20 UTC (rev 229518)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-03-11 22:05:21 UTC (rev 229519)
@@ -1,3 +1,16 @@
+2018-03-11 Wenson Hsieh <[email protected]>
+
+ Disable Sigill crash analyzer on watchOS
+ https://bugs.webkit.org/show_bug.cgi?id=183548
+ <rdar://problem/38338032>
+
+ Reviewed by Mark Lam.
+
+ Sigill is not supported on watchOS.
+
+ * runtime/Options.cpp:
+ (JSC::overrideDefaults):
+
2018-03-09 Filip Pizlo <[email protected]>
Split DirectArguments into JSValueOOB and JSValueStrict parts
Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (229518 => 229519)
--- trunk/Source/_javascript_Core/runtime/Options.cpp 2018-03-11 21:09:20 UTC (rev 229518)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp 2018-03-11 22:05:21 UTC (rev 229519)
@@ -344,8 +344,10 @@
Options::smallHeapRAMFraction() = 0.8;
Options::mediumHeapRAMFraction() = 0.9;
+#if !PLATFORM(WATCHOS)
Options::useSigillCrashAnalyzer() = true;
#endif
+#endif
#if !ENABLE(SIGNAL_BASED_VM_TRAPS)
Options::usePollingTraps() = true;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes