Title: [173338] trunk/Source/WTF
Revision
173338
Author
[email protected]
Date
2014-09-05 16:00:38 -0700 (Fri, 05 Sep 2014)

Log Message

bmalloc should honor the FastMalloc scavenging API
https://bugs.webkit.org/show_bug.cgi?id=136588

Reviewed by Andreas Kling.

* wtf/FastMalloc.cpp:
(WTF::releaseFastMallocFreeMemory):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (173337 => 173338)


--- trunk/Source/WTF/ChangeLog	2014-09-05 22:26:20 UTC (rev 173337)
+++ trunk/Source/WTF/ChangeLog	2014-09-05 23:00:38 UTC (rev 173338)
@@ -1,5 +1,15 @@
 2014-09-05  Geoffrey Garen  <[email protected]>
 
+        bmalloc should honor the FastMalloc scavenging API
+        https://bugs.webkit.org/show_bug.cgi?id=136588
+
+        Reviewed by Andreas Kling.
+
+        * wtf/FastMalloc.cpp:
+        (WTF::releaseFastMallocFreeMemory):
+
+2014-09-05  Geoffrey Garen  <[email protected]>
+
         Rolled out <http://trac.webkit.org/changeset/173313>.
 
         It seems to have broken the PLT bot.

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (173337 => 173338)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2014-09-05 22:26:20 UTC (rev 173337)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2014-09-05 23:00:38 UTC (rev 173338)
@@ -470,7 +470,10 @@
     return fastCalloc(numElements, elementSize);
 }
     
-void releaseFastMallocFreeMemory() { }
+void releaseFastMallocFreeMemory()
+{
+    bmalloc::api::scavenge();
+}
 
 FastMallocStatistics fastMallocStatistics()
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to