aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:32:29 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:46 -0700
commite98cf0cd4f099c07016d50b136713559d21755b2 (patch)
tree49addbbff5cdef9fe478aec8234128687a3bb49a /gdb/linux-nat.c
parent3ecc7da0cbf59dd2d731f14917d9c71fb8a58676 (diff)
downloadgdb-e98cf0cd4f099c07016d50b136713559d21755b2.zip
gdb-e98cf0cd4f099c07016d50b136713559d21755b2.tar.gz
gdb-e98cf0cd4f099c07016d50b136713559d21755b2.tar.bz2
Add target_ops argument to to_remove_vfork_catchpoint
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_remove_vfork_catchpoint>: Add argument. (target_remove_vfork_catchpoint): Add argument. * target.c (debug_to_remove_vfork_catchpoint): Add argument. (update_current_target): Update. * linux-nat.c (linux_child_remove_vfork_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 e5144a7..fa862f6 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -714,7 +714,7 @@ linux_child_insert_vfork_catchpoint (struct target_ops *self, int pid)
}
static int
-linux_child_remove_vfork_catchpoint (int pid)
+linux_child_remove_vfork_catchpoint (struct target_ops *self, int pid)
{
return 0;
}