diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1998-04-26 14:59:48 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1998-04-26 14:59:48 +0000 |
commit | 8b150a6b1808b58c73658293c0d226620e2eed87 (patch) | |
tree | db7bf640faf23b3113bc533f83432b852c2c9ec6 /gdb/rs6000-nat.c | |
parent | 94fa695ecaeef03ffb23f101913de94a9280c8b7 (diff) | |
download | gdb-8b150a6b1808b58c73658293c0d226620e2eed87.zip gdb-8b150a6b1808b58c73658293c0d226620e2eed87.tar.gz gdb-8b150a6b1808b58c73658293c0d226620e2eed87.tar.bz2 |
* rs6000-nat.c (vmap_ldinfo): Issue warning instead of error if
fstat on ldinfo_fd fails. Use objfile->obfd instead of vp->bfd
to check for reference to the same file.
* target.c (target_read_string): Handle string transfers at the
end of a memory section gracefully.
Diffstat (limited to 'gdb/rs6000-nat.c')
-rw-r--r-- | gdb/rs6000-nat.c | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/gdb/rs6000-nat.c b/gdb/rs6000-nat.c index b57054f..7e250ef 100644 --- a/gdb/rs6000-nat.c +++ b/gdb/rs6000-nat.c @@ -1,5 +1,5 @@ /* IBM RS/6000 native-dependent code for GDB, the GNU debugger. - Copyright 1986, 1987, 1989, 1991, 1992, 1994, 1995, 1996, 1997 + Copyright 1986, 1987, 1989, 1991, 1992, 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GDB. @@ -466,15 +466,24 @@ vmap_ldinfo (ldi) retried = 0; if (fstat (ldi->ldinfo_fd, &ii) < 0) - fatal ("cannot fstat(fd=%d) on %s", ldi->ldinfo_fd, name); + { + /* The kernel sets ld_info to -1, if the process is still using the + object, and the object is removed. Keep the symbol info for the + removed object and issue a warning. */ + warning ("%s (fd=%d) has disappeared, keeping its symbols", + name, ldi->ldinfo_fd); + continue; + } retry: for (got_one = 0, vp = vmap; vp; vp = vp->nxt) { + struct objfile *objfile; + /* First try to find a `vp', which is the same as in ldinfo. If not the same, just continue and grep the next `vp'. If same, relocate its tstart, tend, dstart, dend values. If no such `vp' found, get out of this for loop, add this ldi entry as a new vmap - (add_vmap) and come back, fins its `vp' and so on... */ + (add_vmap) and come back, find its `vp' and so on... */ /* The filenames are not always sufficient to match on. */ @@ -482,15 +491,17 @@ vmap_ldinfo (ldi) || (memb[0] && !STREQ(memb, vp->member))) continue; - /* See if we are referring to the same file. */ - if (bfd_stat (vp->bfd, &vi) < 0) - /* An error here is innocuous, most likely meaning that - the file descriptor has become worthless. - FIXME: What does it mean for a file descriptor to become - "worthless"? What makes it happen? What error does it - produce (ENOENT? others?)? Should we at least provide - a warning? */ - continue; + /* See if we are referring to the same file. + We have to check objfile->obfd, symfile.c:reread_symbols might + have updated the obfd after a change. */ + objfile = vp->objfile == NULL ? symfile_objfile : vp->objfile; + if (objfile == NULL + || objfile->obfd == NULL + || bfd_stat (objfile->obfd, &vi) < 0) + { + warning ("Unable to stat %s, keeping its symbols", name); + continue; + } if (ii.st_dev != vi.st_dev || ii.st_ino != vi.st_ino) continue; |