Title: [240077] branches/safari-607-branch/Source/WTF
Revision
240077
Author
alanc...@apple.com
Date
2019-01-16 15:28:13 -0800 (Wed, 16 Jan 2019)

Log Message

Cherry-pick r239894. rdar://problem/47260353

    Follow-up: WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create().
    https://bugs.webkit.org/show_bug.cgi?id=191350

    * wtf/WorkQueue.cpp:
    (WTF::WorkQueue::concurrentApply): Fix whitespace.

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@239894 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-607-branch/Source/WTF/ChangeLog (240076 => 240077)


--- branches/safari-607-branch/Source/WTF/ChangeLog	2019-01-16 23:28:11 UTC (rev 240076)
+++ branches/safari-607-branch/Source/WTF/ChangeLog	2019-01-16 23:28:13 UTC (rev 240077)
@@ -1,5 +1,25 @@
 2019-01-15  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r239894. rdar://problem/47260353
+
+    Follow-up: WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create().
+    https://bugs.webkit.org/show_bug.cgi?id=191350
+    
+    * wtf/WorkQueue.cpp:
+    (WTF::WorkQueue::concurrentApply): Fix whitespace.
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@239894 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-01-11  David Kilzer  <ddkil...@apple.com>
+
+            Follow-up: WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create().
+            https://bugs.webkit.org/show_bug.cgi?id=191350
+
+            * wtf/WorkQueue.cpp:
+            (WTF::WorkQueue::concurrentApply): Fix whitespace.
+
+2019-01-15  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r239873. rdar://problem/47260353
 
     WorkQueue::concurrentApply() passes a raw pointer to a temporary String to Thread::create().

Modified: branches/safari-607-branch/Source/WTF/wtf/WorkQueue.cpp (240076 => 240077)


--- branches/safari-607-branch/Source/WTF/wtf/WorkQueue.cpp	2019-01-16 23:28:11 UTC (rev 240076)
+++ branches/safari-607-branch/Source/WTF/wtf/WorkQueue.cpp	2019-01-16 23:28:13 UTC (rev 240077)
@@ -75,7 +75,7 @@
 
             m_workers.reserveInitialCapacity(threadCount);
             for (unsigned i = 0; i < threadCount; ++i) {
-                m_workers.append(Thread::create("ThreadPool Worker", [this] {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
+                m_workers.append(Thread::create("ThreadPool Worker", [this] {
                     threadBody();
                 }));
             }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to