[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

zecke at webkit.org zecke at webkit.org
Wed Apr 7 23:11:38 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 20dec3edcf3436c30da529734076f03025cd1fe5
Author: zecke at webkit.org <zecke at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 28 10:16:13 2009 +0000

    Export fastMalloc, fastCalloc, fastRealloc and fastFree
    
    Export the FastMalloc functions outside of the libwebkit library
    to be able to instrument memory allocations. These are C++ symbols
    but do not require the C++ runtime to be useful and should be of
    no harm to plain C code.
    
    * autotools/symbols.filter:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50205 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/ChangeLog b/ChangeLog
index 0782543..dc43e0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2009-10-26  Holger Hans Peter Freyther  <zecke at selfish.org>
+
+        Rubber-stamped by Darin Adler.
+
+        Export fastMalloc, fastCalloc, fastRealloc and fastFree
+        https://bugs.webkit.org/show_bug.cgi?id=30769
+
+        Export the FastMalloc functions outside of the libwebkit library
+        to be able to instrument memory allocations. These are C++ symbols
+        but do not require the C++ runtime to be useful and should be of
+        no harm to plain C code.
+
+        * autotools/symbols.filter:
+
 2009-10-26  Gustavo Noronha Silva  <gustavo.noronha at collabora.co.uk>
 
         Reviewed by Jan Alonzo.
diff --git a/autotools/symbols.filter b/autotools/symbols.filter
index 4296d09..7bc3f64 100644
--- a/autotools/symbols.filter
+++ b/autotools/symbols.filter
@@ -1,4 +1,10 @@
 {
+global:
+_ZN3WTF10fastMallocEj;
+_ZN3WTF11fastReallocEPvj;
+_ZN3WTF8fastFreeEPv;
+_ZN3WTF10fastCallocEjj;
+
 local:
 _Z*;
 cti*;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list