diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:32:41 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:47 -0700 |
commit | ba025e51ae36df9d804c64226292c8b863aa0a99 (patch) | |
tree | d7e24f31aae466dc059da395533ce2414120447e /gdb/target.c | |
parent | e98cf0cd4f099c07016d50b136713559d21755b2 (diff) | |
download | gdb-ba025e51ae36df9d804c64226292c8b863aa0a99.zip gdb-ba025e51ae36df9d804c64226292c8b863aa0a99.tar.gz gdb-ba025e51ae36df9d804c64226292c8b863aa0a99.tar.bz2 |
Add target_ops argument to to_insert_exec_catchpoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_insert_exec_catchpoint>: Add
argument.
(target_insert_exec_catchpoint): Add argument.
* target.c (debug_to_insert_exec_catchpoint): Add argument.
(update_current_target): Update.
* linux-nat.c (linux_child_insert_exec_catchpoint): Add 'self'
argument.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/target.c b/gdb/target.c index edc3b97..0b10f39 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -804,7 +804,7 @@ update_current_target (void) (int (*) (struct target_ops *, int)) return_one); de_fault (to_insert_exec_catchpoint, - (int (*) (int)) + (int (*) (struct target_ops *, int)) return_one); de_fault (to_remove_exec_catchpoint, (int (*) (int)) @@ -4918,11 +4918,11 @@ debug_to_remove_vfork_catchpoint (struct target_ops *self, int pid) } static int -debug_to_insert_exec_catchpoint (int pid) +debug_to_insert_exec_catchpoint (struct target_ops *self, int pid) { int retval; - retval = debug_target.to_insert_exec_catchpoint (pid); + retval = debug_target.to_insert_exec_catchpoint (&debug_target, pid); fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n", pid, retval); |