Title: [272085] trunk/Source/_javascript_Core
- Revision
- 272085
- Author
- [email protected]
- Date
- 2021-01-29 16:30:32 -0800 (Fri, 29 Jan 2021)
Log Message
Unreviewed, internal build fix after r272082
https://bugs.webkit.org/show_bug.cgi?id=221147
* runtime/Options.cpp:
(JSC::canUseJITCage):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (272084 => 272085)
--- trunk/Source/_javascript_Core/ChangeLog 2021-01-30 00:18:26 UTC (rev 272084)
+++ trunk/Source/_javascript_Core/ChangeLog 2021-01-30 00:30:32 UTC (rev 272085)
@@ -1,5 +1,13 @@
2021-01-29 Yusuke Suzuki <[email protected]>
+ Unreviewed, internal build fix after r272082
+ https://bugs.webkit.org/show_bug.cgi?id=221147
+
+ * runtime/Options.cpp:
+ (JSC::canUseJITCage):
+
+2021-01-29 Yusuke Suzuki <[email protected]>
+
[JSC] Add com.apple.private.securejit entitlement for JITCage
https://bugs.webkit.org/show_bug.cgi?id=221147
Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (272084 => 272085)
--- trunk/Source/_javascript_Core/runtime/Options.cpp 2021-01-30 00:18:26 UTC (rev 272084)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp 2021-01-30 00:30:32 UTC (rev 272085)
@@ -1129,7 +1129,7 @@
#if ENABLE(JIT_CAGE)
bool canUseJITCage()
{
- return JSC_JIT_CAGE_VERSION() && processHasEntitlement("com.apple.private.securejit");
+ return JSC_JIT_CAGE_VERSION() && WTF::processHasEntitlement("com.apple.private.securejit");
}
#else
bool canUseJITCage() { return false; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes