Changeset 50205 in webkit


Ignore:
Timestamp:
Oct 28, 2009 3:16:13 AM (15 years ago)
Author:
zecke@webkit.org
Message:

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:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r50089 r50205  
     12009-10-26  Holger Hans Peter Freyther  <zecke@selfish.org>
     2
     3        Rubber-stamped by Darin Adler.
     4
     5        Export fastMalloc, fastCalloc, fastRealloc and fastFree
     6        https://bugs.webkit.org/show_bug.cgi?id=30769
     7
     8        Export the FastMalloc functions outside of the libwebkit library
     9        to be able to instrument memory allocations. These are C++ symbols
     10        but do not require the C++ runtime to be useful and should be of
     11        no harm to plain C code.
     12
     13        * autotools/symbols.filter:
     14
    1152009-10-26  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    216
  • trunk/autotools/symbols.filter

    r42232 r50205  
    11{
     2global:
     3_ZN3WTF10fastMallocEj;
     4_ZN3WTF11fastReallocEPvj;
     5_ZN3WTF8fastFreeEPv;
     6_ZN3WTF10fastCallocEjj;
     7
    28local:
    39_Z*;
Note: See TracChangeset for help on using the changeset viewer.