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

commit-queue at webkit.org commit-queue at webkit.org
Sun Feb 20 23:03:48 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit ab97cd786c2047cd36621d2e9f726a4cf5d4f926
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 16 04:22:30 2011 +0000

    2011-01-15  Sheriff Bot  <webkit.review.bot at gmail.com>
    
            Unreviewed, rolling out r75886.
            http://trac.webkit.org/changeset/75886
            https://bugs.webkit.org/show_bug.cgi?id=52526
    
            "Broke GTK+ 64bit" (Requested by xan_ on #webkit).
    
            * jit/ExecutableAllocatorFixedVMPool.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75890 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog
index 668c52d..bbbc2bd 100644
--- a/Source/JavaScriptCore/ChangeLog
+++ b/Source/JavaScriptCore/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-15  Sheriff Bot  <webkit.review.bot at gmail.com>
+
+        Unreviewed, rolling out r75886.
+        http://trac.webkit.org/changeset/75886
+        https://bugs.webkit.org/show_bug.cgi?id=52526
+
+        "Broke GTK+ 64bit" (Requested by xan_ on #webkit).
+
+        * jit/ExecutableAllocatorFixedVMPool.cpp:
+
 2011-01-15  Geoffrey Garen  <ggaren at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp b/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
index 4b4d2d9..45d8297 100644
--- a/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
+++ b/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
@@ -45,7 +45,7 @@
 static const unsigned vmPoolSizeGeneric = 2u * 1024u * 1024u * 1024u; // 2Gb
 static const unsigned coalesceLimitGeneric = 16u * 1024u * 1024u; // 16Mb
 
-static const unsigned vmPoolSizeEmbedded = 16u * 1024u * 1024u; // 16Mb
+static const unsigned vmPoolSizeEmbedded = 32u * 1024u * 1024u; // 32Mb
 static const unsigned coalesceLimitEmbedded = 4u * 1024u * 1024u; // 4Mb
 
 #if CPU(X86_64) && !OS(LINUX)
@@ -59,7 +59,7 @@ static unsigned vmPoolSize = vmPoolSizeGeneric; // 2Gb
 static unsigned coalesceLimit = coalesceLimitGeneric; // 16Mb
 #else
     // These limits are hopefully sensible on embedded platforms.
-static unsigned vmPoolSize = vmPoolSizeEmbedded; // 16Mb
+static unsigned vmPoolSize = vmPoolSizeEmbedded; // 32Mb
 static unsigned coalesceLimit = coalesceLimitEmbedded; // 4Mb
 #endif
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list