]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Whoops, must edit tool.h.base, not tool.h.
authorNicholas Nethercote <njn@valgrind.org>
Tue, 30 Nov 2004 14:41:13 +0000 (14:41 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Tue, 30 Nov 2004 14:41:13 +0000 (14:41 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3163

include/tool.h.base

index 9722c2f31c204cb87f64dd4a3c6d26fa2dd9efbb..b3a83eb77104bf8e4aafe6f141f0d87a234a0be9 100644 (file)
@@ -955,11 +955,11 @@ extern UInt VG_(get_exit_status_shadow) ( ThreadId );
 /* Arena size for valgrind's own malloc();  default value is 0, but can
    be overridden by tool -- but must be done so *statically*, eg:
 
-     UInt VG_(vg_malloc_redzone_szB) = 4;
+     SizeT VG_(vg_malloc_redzone_szB) = 4;
 
    It can't be done from a function like TL_(pre_clo_init)().  So it can't,
    for example, be controlled with a command line option, unfortunately. */
-extern UInt VG_(vg_malloc_redzone_szB);
+extern SizeT VG_(vg_malloc_redzone_szB);
 
 /* Can be called from TL_(malloc) et al to do the actual alloc/freeing. */
 extern void* VG_(cli_malloc) ( SizeT align, SizeT nbytes );