aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:32:54 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:48 -0700
commit758e29d2cd0242b72a05515a701cfdcb73794864 (patch)
tree387d7253134e4c4b5b7764646b2beb26e23a74d8 /gdb/linux-nat.c
parentba025e51ae36df9d804c64226292c8b863aa0a99 (diff)
downloadgdb-758e29d2cd0242b72a05515a701cfdcb73794864.zip
gdb-758e29d2cd0242b72a05515a701cfdcb73794864.tar.gz
gdb-758e29d2cd0242b72a05515a701cfdcb73794864.tar.bz2
Add target_ops argument to to_remove_exec_catchpoint
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_remove_exec_catchpoint>: Add argument. (target_remove_exec_catchpoint): Add argument. * target.c (debug_to_remove_exec_catchpoint): Add argument. (update_current_target): Update. * linux-nat.c (linux_child_remove_exec_catchpoint): Add 'self' argument.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r--gdb/linux-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 1a37ec5..c158f32 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -726,7 +726,7 @@ linux_child_insert_exec_catchpoint (struct target_ops *self, int pid)
}
static int
-linux_child_remove_exec_catchpoint (int pid)
+linux_child_remove_exec_catchpoint (struct target_ops *self, int pid)
{
return 0;
}