[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
zecke at webkit.org
zecke at webkit.org
Thu Dec 3 13:21:28 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 747143329e410b1ec3de97898afc3f84489cdc0f
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