|
From: <sv...@va...> - 2009-06-04 09:57:59
|
Author: bart Date: 2009-06-04 10:57:54 +0100 (Thu, 04 Jun 2009) New Revision: 10242 Log: Fixed argument types and names. Modified: trunk/drd/drd_malloc_wrappers.h Modified: trunk/drd/drd_malloc_wrappers.h =================================================================== --- trunk/drd/drd_malloc_wrappers.h 2009-06-04 09:11:28 UTC (rev 10241) +++ trunk/drd/drd_malloc_wrappers.h 2009-06-04 09:57:54 UTC (rev 10242) @@ -31,8 +31,8 @@ #include "pub_tool_execontext.h" /* ExeContext */ -typedef void (*StartUsingMem)(const Addr a1, const Addr a2, UInt ec_uniq); -typedef void (*StopUsingMem)(const Addr a1, const Addr a2); +typedef void (*StartUsingMem)(const Addr a1, const SizeT len, UInt ec_uniq); +typedef void (*StopUsingMem)(const Addr a1, const SizeT len); void DRD_(register_malloc_wrappers)(const StartUsingMem start_callback, |