diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1994-07-06 08:01:52 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1994-07-06 08:01:52 +0000 |
commit | cef0333efd6b51706779c97e3646d542f3b0e381 (patch) | |
tree | caa3ce788e14d1930f7ef456a12d79438c0e98eb /gdb/os9kread.c | |
parent | 5fb54939a935432613fbe6d4de424ab168d6ca4d (diff) | |
download | gdb-cef0333efd6b51706779c97e3646d542f3b0e381.zip gdb-cef0333efd6b51706779c97e3646d542f3b0e381.tar.gz gdb-cef0333efd6b51706779c97e3646d542f3b0e381.tar.bz2 |
* dbxread.c, elfread.c, mipsread.c, nlmread.c, os9kread.c:
Move "no debugging symbols found" test to symfile.c.
* symfile.c (syms_from_objfile, reread_symbols): Add
"no debugging symbols found" test.
* coffread.c (init_stringtab): Handle stripped files with a
stringtab offset of zero gracefully.
* osfsolib.c (solib_create_inferior_hook): Use DYNAMIC flag from
BFD instead of stop_pc heuristic to determine if it is a dynamically
linked object file.
* procfs.c (wait_fd): Handle ENOENT error return from PIOCWSTOP
ioctl, it indicates that the process has exited.
Diffstat (limited to 'gdb/os9kread.c')
-rw-r--r-- | gdb/os9kread.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/os9kread.c b/gdb/os9kread.c index cf728fe..6c57cee 100644 --- a/gdb/os9kread.c +++ b/gdb/os9kread.c @@ -1,5 +1,5 @@ /* Read os9/os9k symbol tables and convert to internal format, for GDB. - Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993 + Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. This file is part of GDB. @@ -355,12 +355,6 @@ os9k_symfile_read (objfile, section_offsets, mainline) bfd_section_vma (sym_bfd, DBX_TEXT_SECT (objfile)), bfd_section_size (sym_bfd, DBX_TEXT_SECT (objfile))); - if (!have_partial_symbols ()) { - wrap_here (""); - printf_filtered ("(no debugging symbols found)..."); - wrap_here (""); - } - do_cleanups (back_to); } |