diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:32:17 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:45 -0700 |
commit | 3ecc7da0cbf59dd2d731f14917d9c71fb8a58676 (patch) | |
tree | 3c543726a159a8fbb5e17d32a4173d8aa130f2db /gdb/linux-nat.c | |
parent | 973fc2275208a4bfd7dddaa825e0b08b2100546e (diff) | |
download | gdb-3ecc7da0cbf59dd2d731f14917d9c71fb8a58676.zip gdb-3ecc7da0cbf59dd2d731f14917d9c71fb8a58676.tar.gz gdb-3ecc7da0cbf59dd2d731f14917d9c71fb8a58676.tar.bz2 |
Add target_ops argument to to_insert_vfork_catchpoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_insert_vfork_catchpoint>: Add
argument.
(target_insert_vfork_catchpoint): Add argument.
* target.c (debug_to_insert_vfork_catchpoint): Add argument.
(update_current_target): Update.
* linux-nat.c (linux_child_insert_vfork_catchpoint): Add 'self'
argument.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index d4f6bf4..e5144a7 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -708,7 +708,7 @@ linux_child_remove_fork_catchpoint (struct target_ops *self, int pid) } static int -linux_child_insert_vfork_catchpoint (int pid) +linux_child_insert_vfork_catchpoint (struct target_ops *self, int pid) { return !linux_supports_tracefork (); } |