diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:28:08 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:29 -0700 |
commit | f045800c90783c13d6f116d99ca429a9ef556055 (patch) | |
tree | 955b5d9888ad801099a207e3b7b50cba98c7b761 /gdb/ChangeLog | |
parent | de90e03d4c19cf5327b4eaea4ad8666a3a1bfad5 (diff) | |
download | gdb-f045800c90783c13d6f116d99ca429a9ef556055.zip gdb-f045800c90783c13d6f116d99ca429a9ef556055.tar.gz gdb-f045800c90783c13d6f116d99ca429a9ef556055.tar.bz2 |
Add target_ops argument to to_post_attach
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_post_attach>: Add argument.
(target_post_attach): Add argument.
* target.c (debug_to_post_attach): Add argument.
(update_current_target): Update.
* spu-linux-nat.c (spu_child_post_attach): Add 'self' argument.
* nto-procfs.c (procfs_post_attach): Add 'self' argument.
* linux-nat.c (linux_child_post_attach): Add 'self' argument.
* inf-ptrace.c (inf_ptrace_post_attach): Add 'self' argument.
* inf-child.c (inf_child_post_attach): Add 'self' argument.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a98901b..96d6e58 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,17 @@ 2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_post_attach>: Add argument. + (target_post_attach): Add argument. + * target.c (debug_to_post_attach): Add argument. + (update_current_target): Update. + * spu-linux-nat.c (spu_child_post_attach): Add 'self' argument. + * nto-procfs.c (procfs_post_attach): Add 'self' argument. + * linux-nat.c (linux_child_post_attach): Add 'self' argument. + * inf-ptrace.c (inf_ptrace_post_attach): Add 'self' argument. + * inf-child.c (inf_child_post_attach): Add 'self' argument. + +2014-02-19 Tom Tromey <tromey@redhat.com> + * windows-nat.c (windows_close): Add 'self' argument. * tracepoint.c (tfile_close): Add 'self' argument. * target.h (struct target_ops) <to_close>: Add argument. |