summaryrefslogtreecommitdiff
path: root/lackey
diff options
context:
space:
mode:
authorsewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2006-01-17 02:06:39 +0000
committersewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9>2006-01-17 02:06:39 +0000
commit461df9c36f6a07e4f0c14ae068e8e8e9bd383b26 (patch)
treeaa320bf4a8f25d53dbd80e21aa4df40a863dda79 /lackey
parent63fed7f6ab1d67ac956a834d541061a3a8ac85f7 (diff)
These files all speak about instrumentation functions.
Instrumentation functions now take a callback closure structure (VgCallbackClosure*), so this commit changes the signatures accordingly. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5535 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'lackey')
-rw-r--r--lackey/lk_main.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lackey/lk_main.c b/lackey/lk_main.c
index 1aa5e85e..d5a02224 100644
--- a/lackey/lk_main.c
+++ b/lackey/lk_main.c
@@ -273,9 +273,11 @@ static void lk_post_clo_init(void)
}
static
-IRBB* lk_instrument( IRBB* bb_in, VexGuestLayout* layout,
- Addr64 orig_addr_noredir, VexGuestExtents* vge,
- IRType gWordTy, IRType hWordTy )
+IRBB* lk_instrument ( VgCallbackClosure* closure,
+ IRBB* bb_in,
+ VexGuestLayout* layout,
+ VexGuestExtents* vge,
+ IRType gWordTy, IRType hWordTy )
{
IRDirty* di;
Int i;