Title: [161676] trunk/Source/WebCore
Revision
161676
Author
[email protected]
Date
2014-01-10 14:11:53 -0800 (Fri, 10 Jan 2014)

Log Message

[iOS] Fill in missing WebCoreThread function pointers
https://bugs.webkit.org/show_bug.cgi?id=126776

Patch by Joseph Pecoraro <[email protected]> on 2014-01-10
Reviewed by Timothy Hatcher.

* platform/ios/wak/WebCoreThreadSystemInterface.cpp:
(InitWebCoreThreadSystemInterface):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (161675 => 161676)


--- trunk/Source/WebCore/ChangeLog	2014-01-10 22:10:44 UTC (rev 161675)
+++ trunk/Source/WebCore/ChangeLog	2014-01-10 22:11:53 UTC (rev 161676)
@@ -1,3 +1,13 @@
+2014-01-10  Joseph Pecoraro  <[email protected]>
+
+        [iOS] Fill in missing WebCoreThread function pointers
+        https://bugs.webkit.org/show_bug.cgi?id=126776
+
+        Reviewed by Timothy Hatcher.
+
+        * platform/ios/wak/WebCoreThreadSystemInterface.cpp:
+        (InitWebCoreThreadSystemInterface):
+
 2014-01-10  Yongjun Zhang  <[email protected]>
 
         Clear unparented tiled layers on memory pressure.

Modified: trunk/Source/WebCore/platform/ios/wak/WebCoreThreadSystemInterface.cpp (161675 => 161676)


--- trunk/Source/WebCore/platform/ios/wak/WebCoreThreadSystemInterface.cpp	2014-01-10 22:10:44 UTC (rev 161675)
+++ trunk/Source/WebCore/platform/ios/wak/WebCoreThreadSystemInterface.cpp	2014-01-10 22:11:53 UTC (rev 161676)
@@ -28,7 +28,8 @@
 
 #if PLATFORM(IOS)
 
-#include "WebCoreThread.h" 
+#include "WebCoreThread.h"
+#include "WebCoreThreadRun.h"
 #include <wtf/ios/WebCoreThread.h>
 
 // "Fill In" _javascript_Core's function pointers with ours.
@@ -44,6 +45,9 @@
         return;
 
     INIT(WebThreadIsLockedOrDisabled);
+    INIT(WebThreadIsEnabled);
+    INIT(WebThreadRun);
+    INIT(WebThreadRunSync);
 
     didInit = true;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to