diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-26 21:49:48 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-06 08:56:20 -0700 |
commit | bc521517b7058a231a08bf8f3deae7cd41cd62d7 (patch) | |
tree | ae7a824e59ff285cd070bc89d41e286f786e55a5 /gdb/procfs.c | |
parent | 10a85f29c74ab562db622cfc4f58997e859c6ed6 (diff) | |
download | gdb-bc521517b7058a231a08bf8f3deae7cd41cd62d7.zip gdb-bc521517b7058a231a08bf8f3deae7cd41cd62d7.tar.gz gdb-bc521517b7058a231a08bf8f3deae7cd41cd62d7.tar.bz2 |
Introduce target_announce_attach
This introduces target_announce_attach, by analog with
target_announce_detach. Then it converts existing targets to use
this, rather than emitting their own output by hand.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r-- | gdb/procfs.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c index 201e37c..ddc8623 100644 --- a/gdb/procfs.c +++ b/gdb/procfs.c @@ -1775,19 +1775,7 @@ procfs_target::attach (const char *args, int from_tty) unpusher.reset (this); } - if (from_tty) - { - const char *exec_file = get_exec_file (0); - - if (exec_file) - printf_filtered (_("Attaching to program `%s', %s\n"), - exec_file, target_pid_to_str (ptid_t (pid)).c_str ()); - else - printf_filtered (_("Attaching to %s\n"), - target_pid_to_str (ptid_t (pid)).c_str ()); - - fflush (stdout); - } + target_announce_attach (from_tty, pid); do_attach (ptid_t (pid)); |