+Tue Feb 13 22:56:46 1996 Fred Fish <fnf@cygnus.com>
+
+ * symfile.c (add_psymbol_to_list, add_psymbol_addr_to_list):
+ Use n_psyms in OBJSTAT, not psyms.
+
+Mon Feb 12 15:59:31 1996 Doug Evans <dje@charmed.cygnus.com>
+
+ * configure.in (sparclet-*-aout*): New config.
+ * configure: Regenerated.
+
Mon Feb 12 14:17:52 1996 Fred Fish <fnf@cygnus.com>
* somsolib.c (som_solib_add): Use xmalloc rather than bare
/* Generic symbol file reading for the GNU debugger, GDB.
- Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+ Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
+ Free Software Foundation, Inc.
Contributed by Cygnus Support, using pieces from other GDB modules.
This file is part of GDB.
#endif
/* If true, then shared library symbols will be added automatically
- when the inferior is created. This is almost always what users
+ when the inferior is created, new libraries are loaded, or when
+ attaching to the inferior. This is almost always what users
will want to have happen; but for very large programs, the startup
time will be excessive, and so if this is a problem, the user can
clear this flag and then add the shared library symbols as needed.
library symbols are not loaded, commands like "info fun" will *not*
report all the functions that are actually present. */
-int auto_solib_add_at_startup = 1;
+int auto_solib_add = 1;
\f
/* Since this function is called from within qsort, in an ANSI environment
PSYMBOL_NAMESPACE (psym) = namespace;
PSYMBOL_CLASS (psym) = class;
SYMBOL_INIT_LANGUAGE_SPECIFIC (psym, language);
- OBJSTAT (objfile, psyms++);
+ OBJSTAT (objfile, n_psyms++);
}
/* Add a symbol with a CORE_ADDR value to a psymtab. */
PSYMBOL_NAMESPACE (psym) = namespace;
PSYMBOL_CLASS (psym) = class;
SYMBOL_INIT_LANGUAGE_SPECIFIC (psym, language);
- OBJSTAT (objfile, psyms++);
+ OBJSTAT (objfile, n_psyms++);
}
#endif /* !INLINE_ADD_PSYMBOL */