diff options
author | Pedro Alves <palves@redhat.com> | 2008-11-03 14:01:27 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-11-03 14:01:27 +0000 |
commit | 50c71eaf0e6a7026633818a76f14b6ab4efec73c (patch) | |
tree | c557ce9f49f0b31ac7b45a3f6af8cac9dcf92bf4 /gdb/target.c | |
parent | e03c1da340f2622b6fb1293fb0449f5ab85992c7 (diff) | |
download | gdb-50c71eaf0e6a7026633818a76f14b6ab4efec73c.zip gdb-50c71eaf0e6a7026633818a76f14b6ab4efec73c.tar.gz gdb-50c71eaf0e6a7026633818a76f14b6ab4efec73c.tar.bz2 |
* remote.c (remote_start_remote): If the solib list is global,
fetch libraries and insert breakpoints after connecting.
* infcmd.c (post_create_inferior): If the solist is shared between
inferiors, no need to refetch it on every new inferior.
(detach_command): If the shared library list is shared between
inferiors, then don't clear it on every inferior detach.
* gdbarch.sh (has_global_solist): New.
* i386-dicos-tdep.c (i386_dicos_init_abi): Set
gdbarch_has_global_solist.
* target.c (target_pre_inferior): If the shared library list is
shared between inferiors, then don't clear it here, neither
invalidate the memory regions or clear the target description.
(target_detach): If the shared library list is shared between
inferiors, then don't remove breakpoints from the target here.
(target_disconnect): Comment.
* solib.c (update_solib_list): Check for null_ptid.
* breakpoint.c (insert_breakpoints, update_global_location_list):
If the shared library list is shared between inferiors, insert
breakpoints even if there's no execution.
(breakpoint_init_inferior): If the shared library list is shared
between inferiors, don't delete breakpoints or mark them
uninserted here.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/gdb/target.c b/gdb/target.c index 0976ad1..fa9a941 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1752,11 +1752,18 @@ target_pre_inferior (int from_tty) (gdb) attach 4712 Cannot access memory at address 0xdeadbeef */ - no_shared_libraries (NULL, from_tty); - invalidate_target_mem_regions (); + /* In some OSs, the shared library list is the same/global/shared + across inferiors. If code is shared between processes, so are + memory regions and features. */ + if (!gdbarch_has_global_solist (target_gdbarch)) + { + no_shared_libraries (NULL, from_tty); + + invalidate_target_mem_regions (); - target_clear_description (); + target_clear_description (); + } } /* This is to be called by the open routine before it does @@ -1790,9 +1797,14 @@ target_preopen (int from_tty) void target_detach (char *args, int from_tty) { - /* If we're in breakpoints-always-inserted mode, have to - remove them before detaching. */ - remove_breakpoints (); + if (gdbarch_has_global_solist (target_gdbarch)) + /* Don't remove global breakpoints here. They're removed on + disconnection from the target. */ + ; + else + /* If we're in breakpoints-always-inserted mode, have to remove + them before detaching. */ + remove_breakpoints (); (current_target.to_detach) (args, from_tty); } @@ -1802,8 +1814,9 @@ target_disconnect (char *args, int from_tty) { struct target_ops *t; - /* If we're in breakpoints-always-inserted mode, have to - remove them before disconnecting. */ + /* If we're in breakpoints-always-inserted mode or if breakpoints + are global across processes, we have to remove them before + disconnecting. */ remove_breakpoints (); for (t = current_target.beneath; t != NULL; t = t->beneath) |