Title: [172577] trunk/Source/bmalloc
Revision
172577
Author
[email protected]
Date
2014-08-13 22:09:32 -0700 (Wed, 13 Aug 2014)

Log Message

Attempt to fix the build following <http://trac.webkit.org/changeset/172576>
(https://bugs.webkit.org/show_bug.cgi?id=135895)

Substitute PerThreadStorage<T>::initSharedKeyIfNeeded() for initSharedKeyIfNeeded() in
implementation of PerThread<T>::getFastCase().

* bmalloc/PerThread.h:
(bmalloc::PerThread<T>::getFastCase):

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (172576 => 172577)


--- trunk/Source/bmalloc/ChangeLog	2014-08-14 05:00:22 UTC (rev 172576)
+++ trunk/Source/bmalloc/ChangeLog	2014-08-14 05:09:32 UTC (rev 172577)
@@ -1,5 +1,16 @@
 2014-08-13  Daniel Bates  <[email protected]>
 
+        Attempt to fix the build following <http://trac.webkit.org/changeset/172576>
+        (https://bugs.webkit.org/show_bug.cgi?id=135895)
+
+        Substitute PerThreadStorage<T>::initSharedKeyIfNeeded() for initSharedKeyIfNeeded() in
+        implementation of PerThread<T>::getFastCase().
+
+        * bmalloc/PerThread.h:
+        (bmalloc::PerThread<T>::getFastCase):
+
+2014-08-13  Daniel Bates  <[email protected]>
+
         Make bmalloc::PerThread work without C++ thread local storage
         https://bugs.webkit.org/show_bug.cgi?id=135895
 

Modified: trunk/Source/bmalloc/bmalloc/PerThread.h (172576 => 172577)


--- trunk/Source/bmalloc/bmalloc/PerThread.h	2014-08-14 05:00:22 UTC (rev 172576)
+++ trunk/Source/bmalloc/bmalloc/PerThread.h	2014-08-14 05:09:32 UTC (rev 172577)
@@ -115,7 +115,7 @@
 INLINE T* PerThread<T>::getFastCase()
 {
 #if (!defined(__has_include) || !__has_include(<System/pthread_machdep.h>)) && !BCOMPILER_SUPPORTS(CXX_THREAD_LOCAL)
-    initSharedKeyIfNeeded(destructor);
+    PerThreadStorage<T>::initSharedKeyIfNeeded(destructor);
 #endif
     return static_cast<T*>(PerThreadStorage<T>::get());
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to