diff options
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/target.c b/gdb/target.c index 438788e..6babfc5 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -2718,12 +2718,14 @@ target_follow_fork (bool follow_child, bool detach_fork) return target->follow_fork (follow_child, detach_fork); } -/* Target wrapper for follow exec hook. */ +/* See target.h. */ void -target_follow_exec (struct inferior *inf, const char *execd_pathname) +target_follow_exec (inferior *follow_inf, ptid_t ptid, + const char *execd_pathname) { - current_inferior ()->top_target ()->follow_exec (inf, execd_pathname); + current_inferior ()->top_target ()->follow_exec (follow_inf, ptid, + execd_pathname); } static void |