Title: [126447] trunk/Source/WTF
Revision
126447
Author
gga...@apple.com
Date
2012-08-23 10:55:05 -0700 (Thu, 23 Aug 2012)

Log Message

Fixed a fastMallocForbid/Allow compile error for some compilers
https://bugs.webkit.org/show_bug.cgi?id=94775

Reviewed by Gavin Barraclough.

* wtf/FastMalloc.h:
(WTF::fastMallocForbid()):
(WTF::fastMallocAllow()): Export, since these are called by _javascript_Core.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (126446 => 126447)


--- trunk/Source/WTF/ChangeLog	2012-08-23 17:51:26 UTC (rev 126446)
+++ trunk/Source/WTF/ChangeLog	2012-08-23 17:55:05 UTC (rev 126447)
@@ -1,5 +1,16 @@
 2012-08-22  Geoffrey Garen  <gga...@apple.com>
 
+        Fixed a fastMallocForbid/Allow compile error for some compilers
+        https://bugs.webkit.org/show_bug.cgi?id=94775
+
+        Reviewed by Gavin Barraclough.
+
+        * wtf/FastMalloc.h:
+        (WTF::fastMallocForbid()):
+        (WTF::fastMallocAllow()): Export, since these are called by _javascript_Core.
+
+2012-08-22  Geoffrey Garen  <gga...@apple.com>
+
         ThreadRestrictionVerifier should be opt-in, not opt-out
         https://bugs.webkit.org/show_bug.cgi?id=94761
 

Modified: trunk/Source/WTF/wtf/FastMalloc.h (126446 => 126447)


--- trunk/Source/WTF/wtf/FastMalloc.h	2012-08-23 17:51:26 UTC (rev 126446)
+++ trunk/Source/WTF/wtf/FastMalloc.h	2012-08-23 17:55:05 UTC (rev 126447)
@@ -76,8 +76,8 @@
     WTF_EXPORT_PRIVATE void fastFree(void*);
 
 #ifndef NDEBUG    
-    void fastMallocForbid();
-    void fastMallocAllow();
+    WTF_EXPORT_PRIVATE void fastMallocForbid();
+    WTF_EXPORT_PRIVATE void fastMallocAllow();
 #endif
 
     WTF_EXPORT_PRIVATE void releaseFastMallocFreeMemory();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to