[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

paroga at webkit.org paroga at webkit.org
Sun Feb 20 22:58:50 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 54459e653bf940bbd6aebc2c425692c564654995
Author: paroga at webkit.org <paroga at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 14 22:49:09 2011 +0000

    2011-01-14  Patrick Gansterer  <paroga at webkit.org>
    
            Unreviewed Windows Release build fix.
    
            * wtf/FastMalloc.cpp:
            (WTF::TCMalloc_PageHeap::scavengerTimerFired):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75825 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 8737c3d..69050d2 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,5 +1,12 @@
 2011-01-14  Patrick Gansterer  <paroga at webkit.org>
 
+        Unreviewed Windows Release build fix.
+
+        * wtf/FastMalloc.cpp:
+        (WTF::TCMalloc_PageHeap::scavengerTimerFired):
+
+2011-01-14  Patrick Gansterer  <paroga at webkit.org>
+
         Reviewed by Adam Roben.
 
         Use the Windows thread pool instead of an extra thread for FastMalloc scavenging
diff --git a/Source/JavaScriptCore/wtf/FastMalloc.cpp b/Source/JavaScriptCore/wtf/FastMalloc.cpp
index fdee480..bce898b 100644
--- a/Source/JavaScriptCore/wtf/FastMalloc.cpp
+++ b/Source/JavaScriptCore/wtf/FastMalloc.cpp
@@ -1459,6 +1459,7 @@ class TCMalloc_PageHeap {
   dispatch_source_t m_scavengeTimer;
   bool m_scavengingSuspended;
 #elif OS(WINDOWS)
+  static void CALLBACK scavengerTimerFired(void*, BOOLEAN)
   HANDLE m_scavengeQueueTimer;
 #else 
   static NO_RETURN_WITH_VALUE void* runScavengerThread(void*);
@@ -1544,7 +1545,7 @@ ALWAYS_INLINE void TCMalloc_PageHeap::suspendScavenger()
 
 #elif OS(WINDOWS)
 
-static void CALLBACK scavengerTimerFired(void* context, BOOLEAN)
+static void CALLBACK TCMalloc_PageHeap::scavengerTimerFired(void* context, BOOLEAN)
 {
     static_cast<TCMalloc_PageHeap*>(context)->periodicScavenge();
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list