From: Daniel Jacobowitz Date: Tue, 23 Mar 2004 16:45:01 +0000 (+0000) Subject: * infcmd.c (attach_command): Reread symbols if we already have X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=63ed89b41d67ffdda6fe57f014afa4e0dec8e169;p=binutils-gdb.git * infcmd.c (attach_command): Reread symbols if we already have an exec file. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bd92078ea73..7f519fd1747 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-03-23 Daniel Jacobowitz + + * infcmd.c (attach_command): Reread symbols if we already have + an exec file. + 2004-03-23 Andrew Cagney * rs6000-tdep.c (frame_get_saved_regs): Delete unused function. diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 6e74f4e5431..1ad12bf706e 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1843,6 +1843,11 @@ attach_command (char *args, int from_tty) symbol_file_add_main (full_exec_path, from_tty); } } + else + { + reopen_exec_file (); + reread_symbols (); + } #ifdef SOLIB_ADD /* Add shared library symbols from the newly attached process, if any. */