aboutsummaryrefslogtreecommitdiff
path: root/gdb/rs6000-nat.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2007-05-19 23:50:05 +0000
committerJoel Brobecker <brobecker@gnat.com>2007-05-19 23:50:05 +0000
commit8d08c9ced7842a948c08d8bcc7205495f1ee3248 (patch)
tree169bfe343d585945ba55ec5dd65b51b2df6fb212 /gdb/rs6000-nat.c
parent379c558d323c3adc38f2197f5bc64a2c65f33277 (diff)
downloadgdb-8d08c9ced7842a948c08d8bcc7205495f1ee3248.zip
gdb-8d08c9ced7842a948c08d8bcc7205495f1ee3248.tar.gz
gdb-8d08c9ced7842a948c08d8bcc7205495f1ee3248.tar.bz2
* rs6000-nat.c (xcoff_relocate_symtab): Do nothing if debugging
a core file. Add comment in the function description.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r--gdb/rs6000-nat.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c
index efb40e6..3be2e9f 100644
--- a/gdb/rs6000-nat.c
+++ b/gdb/rs6000-nat.c
@@ -1016,7 +1016,9 @@ rs6000_create_inferior (char *exec_file, char *allargs, char **env, int from_tty
/* xcoff_relocate_symtab - hook for symbol table relocation.
- also reads shared libraries. */
+
+ This is only applicable to live processes, and is a no-op when
+ debugging a core file. */
void
xcoff_relocate_symtab (unsigned int pid)
@@ -1028,6 +1030,9 @@ xcoff_relocate_symtab (unsigned int pid)
int ldisize = arch64 ? sizeof (ldi->l64) : sizeof (ldi->l32);
int size;
+ if (ptid_equal (inferior_ptid, null_ptid))
+ return;
+
do
{
size = load_segs * ldisize;