From: Nicholas Nethercote Date: Sun, 16 Oct 2005 17:48:09 +0000 (+0000) Subject: augment comment X-Git-Tag: svn/VALGRIND_3_1_0~293 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b32a66a35f235d26099dd769aed72c6424956892;p=thirdparty%2Fvalgrind.git augment comment git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4939 --- diff --git a/include/pub_tool_tooliface.h b/include/pub_tool_tooliface.h index d9d49727da..9796a3d085 100644 --- a/include/pub_tool_tooliface.h +++ b/include/pub_tool_tooliface.h @@ -262,7 +262,9 @@ extern void VG_(needs_data_syms) ( void ); /* Does the tool need shadow memory allocated? */ extern void VG_(needs_shadow_memory)( void ); -/* Does the tool replace malloc() and friends with its own versions? */ +/* Does the tool replace malloc() and friends with its own versions? + This has to be combined with the use of a vgpreload_.so module + or it won't work. See massif/Makefile.am for how to build it. */ // The 'p' prefix avoids GCC complaints about overshadowing global names. extern void VG_(needs_malloc_replacement)( void* (*pmalloc) ( ThreadId tid, SizeT n ),