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/doc | |
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/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 38 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 5 | ||||
-rw-r--r-- | gdb/doc/refcard.tex | 2 |
4 files changed, 16 insertions, 38 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 20f2816..80dd326 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,12 @@ +2012-03-13 Doug Evans <dje@google.com> + + * 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. + 2012-03-07 Pedro Alves <palves@redhat.com> * gdb.texinfo (General Query Packets): Document new diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index e8bbded..a5022d4 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -1700,7 +1700,7 @@ commands, and their documentation, for the regular expression specified in @var{args}. It prints out all matches found. For example: @smallexample -apropos reload +apropos alias @end smallexample @noindent @@ -1708,10 +1708,11 @@ results in: @smallexample @c @group -set symbol-reloading -- Set dynamic symbol table reloading - multiple times in one run -show symbol-reloading -- Show dynamic symbol table reloading - multiple times in one run +alias -- Define a new command that is an alias of an existing command +aliases -- Aliases of other commands +d -- Delete some breakpoints or auto-display expressions +del -- Delete some breakpoints or auto-display expressions +delete -- Delete some breakpoints or auto-display expressions @c @end group @end smallexample @@ -14721,33 +14722,6 @@ from the @code{ptype} command can be overwhelming and hard to use. The which match the regular-expression @var{regexp}. @end ignore -@cindex reloading symbols -Some systems allow individual object files that make up your program to -be replaced without stopping and restarting your program. For example, -in VxWorks you can simply recompile a defective object file and keep on -running. If you are running on one of these systems, you can allow -@value{GDBN} to reload the symbols for automatically relinked modules: - -@table @code -@kindex set symbol-reloading -@item set symbol-reloading on -Replace symbol definitions for the corresponding source file when an -object file with a particular name is seen again. - -@item set symbol-reloading off -Do not replace symbol definitions when encountering object files of the -same name more than once. This is the default state; if you are not -running on a system that permits automatic relinking of modules, you -should leave @code{symbol-reloading} off, since otherwise @value{GDBN} -may discard symbols when linking large programs, that may contain -several modules (from different directories or libraries) with the same -name. - -@kindex show symbol-reloading -@item show symbol-reloading -Show the current @code{on} or @code{off} setting. -@end table - @cindex opaque data types @kindex set opaque-type-resolution @item set opaque-type-resolution on diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 026dc59..fcc106c 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -4916,11 +4916,6 @@ number of that register. Use this function to convert stab register @var{stab_regnr} into @value{GDBN} regnum. If not defined, no conversion will be done. -@item SYMBOL_RELOADING_DEFAULT -@findex SYMBOL_RELOADING_DEFAULT -The default value of the ``symbol-reloading'' variable. (Never defined in -current sources.) - @item TARGET_CHAR_BIT @findex TARGET_CHAR_BIT Number of bits in a char; defaults to 8. diff --git a/gdb/doc/refcard.tex b/gdb/doc/refcard.tex index c6656e5..bee7c3d 100644 --- a/gdb/doc/refcard.tex +++ b/gdb/doc/refcard.tex @@ -68,7 +68,7 @@ % all variations of a command. % The GDB-under-Emacs section omits gdb-mode functions without default % keybindings. GDB startup options are not described. -% set print sevenbit-strings, set symbol-reloading omitted. +% set print sevenbit-strings omitted. % printsyms, printpsyms, omitted since they're for GDB maintenance primarily % share omitted due to obsolescence % set check range/type omitted at least til code is in GDB. |