aboutsummaryrefslogtreecommitdiff
path: root/gdb/nto-procfs.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-12-26 21:49:48 -0700
committerTom Tromey <tom@tromey.com>2022-01-06 08:56:20 -0700
commitbc521517b7058a231a08bf8f3deae7cd41cd62d7 (patch)
treeae7a824e59ff285cd070bc89d41e286f786e55a5 /gdb/nto-procfs.c
parent10a85f29c74ab562db622cfc4f58997e859c6ed6 (diff)
downloadfsf-binutils-gdb-bc521517b7058a231a08bf8f3deae7cd41cd62d7.zip
fsf-binutils-gdb-bc521517b7058a231a08bf8f3deae7cd41cd62d7.tar.gz
fsf-binutils-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/nto-procfs.c')
-rw-r--r--gdb/nto-procfs.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c
index bf869df..da0feae 100644
--- a/gdb/nto-procfs.c
+++ b/gdb/nto-procfs.c
@@ -701,17 +701,8 @@ nto_procfs_target::attach (const char *args, int from_tty)
if (pid == getpid ())
error (_("Attaching GDB to itself is not a good idea..."));
- if (from_tty)
- {
- const char *exec_file = get_exec_file (0);
+ target_announce_attach (from_tty, pid);
- if (exec_file)
- printf_unfiltered ("Attaching to program `%s', %s\n", exec_file,
- target_pid_to_str (ptid_t (pid)).c_str ());
- else
- printf_unfiltered ("Attaching to %s\n",
- target_pid_to_str (ptid_t (pid)).c_str ());
- }
ptid_t ptid = do_attach (ptid_t (pid));
inf = current_inferior ();
inferior_appeared (inf, pid);