diff options
author | Doug Evans <dje@google.com> | 2012-03-13 21:02:40 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-03-13 21:02:40 +0000 |
commit | 168997566e2a9a7050bd9f236c4b6d9a2223864c (patch) | |
tree | 4e692320e5f29bbbeaca8f6bcb3d24bc1eb36a57 /gdb/symfile.c | |
parent | c5b7e1cbc5f385a8a45b8b4891c05c310ffe6552 (diff) | |
download | gdb-168997566e2a9a7050bd9f236c4b6d9a2223864c.zip gdb-168997566e2a9a7050bd9f236c4b6d9a2223864c.tar.gz gdb-168997566e2a9a7050bd9f236c4b6d9a2223864c.tar.bz2 |
* NEWS: Mention symbol-reloading has been deleted.
* symfile.c (symbol_reloading): Delete.
(show_symbol_reloading): Delete.
(_initialize_symfile): Delete set/show symbol-reloading.
doc/
* gdb.texinfo (Help): Change apropos example to use "alias" instead
of "reload".
(Symbols): Delete docs for set/show symbol-reloading.
* gdbint.texinfo (Defining Other Architecture Features): Delete
SYMBOL_RELOADING_DEFAULT.
* refcard.tex: Delete reference to symbol-reloading.
testsuite/
* gdb.base/default.exp: Delete tests for symbol-reloading.
* gdb.base/help.exp: Ditto.
* gdb.base/setshow.exp: Ditto.
* gdb.base/gdb_history: Delete references to symbol-reloading.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index ad46748..816b574 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -147,23 +147,6 @@ DEF_VEC_P (sym_fns_ptr); static VEC (sym_fns_ptr) *symtab_fns = NULL; -/* Flag for whether user will be reloading symbols multiple times. - Defaults to ON for VxWorks, otherwise OFF. */ - -#ifdef SYMBOL_RELOADING_DEFAULT -int symbol_reloading = SYMBOL_RELOADING_DEFAULT; -#else -int symbol_reloading = 0; -#endif -static void -show_symbol_reloading (struct ui_file *file, int from_tty, - struct cmd_list_element *c, const char *value) -{ - fprintf_filtered (file, _("Dynamic symbol table reloading " - "multiple times in one run is %s.\n"), - value); -} - /* If non-zero, shared library symbols will be added automatically when the inferior is created, new libraries are loaded, or when attaching to the inferior. This is almost always what users will @@ -3833,14 +3816,6 @@ for access from GDB.\n\ A load OFFSET may also be given."), &cmdlist); set_cmd_completer (c, filename_completer); - add_setshow_boolean_cmd ("symbol-reloading", class_support, - &symbol_reloading, _("\ -Set dynamic symbol table reloading multiple times in one run."), _("\ -Show dynamic symbol table reloading multiple times in one run."), NULL, - NULL, - show_symbol_reloading, - &setlist, &showlist); - add_prefix_cmd ("overlay", class_support, overlay_command, _("Commands for debugging overlays."), &overlaylist, "overlay ", 0, &cmdlist); |