Title: [156129] trunk/Source/WTF
Revision
156129
Author
[email protected]
Date
2013-09-19 16:15:50 -0700 (Thu, 19 Sep 2013)

Log Message

[iOS] Define mainThreadEstablishedAsPthreadMain to be true in WTF::initializeMainThreadPlatform()

Reviewed by Joseph Pecoraro.

This change was inadvertently left out of <http://trac.webkit.org/changeset/155926>.

* wtf/mac/MainThreadMac.mm:
(WTF::initializeMainThreadPlatform):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (156128 => 156129)


--- trunk/Source/WTF/ChangeLog	2013-09-19 23:03:44 UTC (rev 156128)
+++ trunk/Source/WTF/ChangeLog	2013-09-19 23:15:50 UTC (rev 156129)
@@ -1,3 +1,14 @@
+2013-09-19  Daniel Bates  <[email protected]>
+
+        [iOS] Define mainThreadEstablishedAsPthreadMain to be true in WTF::initializeMainThreadPlatform()
+
+        Reviewed by Joseph Pecoraro.
+
+        This change was inadvertently left out of <http://trac.webkit.org/changeset/155926>.
+
+        * wtf/mac/MainThreadMac.mm:
+        (WTF::initializeMainThreadPlatform):
+
 2013-09-19  Sam Weinig  <[email protected]>
 
         Remove OwnArrayPtr

Modified: trunk/Source/WTF/wtf/mac/MainThreadMac.mm (156128 => 156129)


--- trunk/Source/WTF/wtf/mac/MainThreadMac.mm	2013-09-19 23:03:44 UTC (rev 156128)
+++ trunk/Source/WTF/wtf/mac/MainThreadMac.mm	2013-09-19 23:15:50 UTC (rev 156129)
@@ -72,7 +72,7 @@
     ASSERT(!staticMainThreadCaller);
     staticMainThreadCaller = [[JSWTFMainThreadCaller alloc] init];
 
-    mainThreadEstablishedAsPthreadMain = false;
+    mainThreadEstablishedAsPthreadMain = true;
 
 #if !USE(WEB_THREAD)
     mainThreadPthread = pthread_self();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to