aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
AgeCommit message (Collapse)AuthorFilesLines
2001-06-17 * annotate.texi: Add @noindent where needed. From DmitryEli Zaretskii3-1/+16
Sivachenko <dima@Chg.RU>. * gdb.texinfo: Indexing fix. From Dmitry Sivachenko.
2001-06-16Fix typo.Andrew Cagney2-1/+5
2001-06-14Fix doco on ``!'' and ``R'' packets.Andrew Cagney2-10/+18
2001-06-142001-06-13 Michael Snyder <msnyder@redhat.com>Michael Snyder2-0/+50
* gdb.texinfo (Protocol): Add doc for new packet "qSymbol:".
2001-06-13 * gdb.texinfo (Signals): Clarify the default setting of signalEli Zaretskii2-3/+14
handling.
2001-05-14Remove stray @item's.Andrew Cagney2-2/+7
2001-05-14* Makefile.in (GDBvn.texi): Set GDBVN from ../version.in.Andrew Cagney2-3/+7
2001-05-10 * gdbint.texinfo (Clean Design and Portable Implementation):Eli Zaretskii2-1/+69
Renamed from "Clean Design". (Clean Design and Portable Implementation): Document portable methods of handling file names, and the associated macros.
2001-05-03Fix a typo.Eli Zaretskii1-1/+1
2001-04-02 * gdb.texinfo (Tracepoint Actions): Mention the "info scope"Eli Zaretskii2-0/+14
command and provide a cross-reference to its description. (Symbols): Note that "info scope" is useful for trace experiments.
2001-04-01 * gdb.texinfo (Symbols): Document "info scope".Eli Zaretskii2-147/+796
(Tracepoints): New chapter. (Contributors): Update for v5.1. <All nodes>: Change "C++" to "C@t{++}".
2001-04-01 * gdbint.texinfo (User Interface): A new section about ui_outEli Zaretskii2-0/+586
functions, based on text written by Fernando Nasser.
2001-04-01Change Permissions to GFDL. Update Copyright.Eli Zaretskii2-18/+26
2001-03-26 * gdbint.texinfo: Change Permissions to GFDL. Update Copyright.Eli Zaretskii5-229/+217
* gdbgui.texinfo: Change Permissions to GFDL. Update Copyright. Replace "GDB" with "@value{GDBN}". Fix markup. * annotate.texi: Change Permissions to GFDL. Update Copyright. * gdb.texinfo: Change Permissions to GFDL. Update Copyright. * gdbmi.texinfo: Update copyright. Change Permissions to GFDL.
2001-03-26 * gdb.texinfo (Output Formats): Mention "info symbol" and provideEli Zaretskii2-0/+26
a cross-reference to its description. (Symbols): Document "info symbol".
2001-03-21 * gdbint.texinfo (Algorithms): New section "Watchpoints" and newEli Zaretskii2-8/+384
subsection "x86 Watchpoints". (Target Architecture Definition): Document I386_USE_GENERIC_WATCHPOINTS and TARGET_HAS_HARDWARE_WATCHPOINTS. (Native Debugging): Document I386_USE_GENERIC_WATCHPOINTS.
2001-03-20Change SOFTWARE_SINGLE_STEP_P into SOFTWARE_SINGLE_STEP_P().Andrew Cagney2-1/+7
2001-03-06Update/correct copyright notices.Kevin Buettner7-6/+15
2001-02-21 * gdb.texinfo (Signals): Document "ignore", "noignore", and "all".Eli Zaretskii2-4/+13
2001-02-11 * gdb.texinfo (Environment): Document that `path' does not changeEli Zaretskii2-1/+7
the value of PATH in GDB's own environment (it did in the past, but that was changed on March 15, 1994). Reported by Doug Evans <dje@transmeta.com>.
2001-02-11 * gdbint.texinfo: Fix up @itemize lists so that @item is alone onEli Zaretskii2-617/+982
its line. Fix markup of commands. Add an index and index entries.
2001-01-23* exec.c (xfer_memory): Add attrib argument.J.T. Conklin2-1/+137
* infptrace.c (child_xfer_memory): Likewise. * monitor.c (monitor_xfer_memory): Likewise. * remote-adapt.c (adapt_xfer_inferior_memory): Likewise. * remote-array.c (array_xfer_memory): Likewise. * remote-bug.c (bug_xfer_memory): Likewise. * remote-e7000.c (e7000_xfer_inferior_memory): Likewise. * remote-eb.c (eb_xfer_inferior_memory): Likewise. * remote-es.c (es1800_xfer_inferior_memory): Likewise. * remote-mips.c (mips_xfer_memory): Likewise. * remote-mm.c (mm_xfer_inferior_memory): Likewise. * remote-nindy.c (nindy_xfer_inferior_memory): Likewise. * remote-os9k.c (rombug_xfer_inferior_memory): Likewise. * remote-rdi.c (arm_rdi_xfer_memory): Likewise. * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise. * remote-sds.c (sds_xfer_memory): Likewise. * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise. * remote-st.c (st2000_xfer_inferior_memory): Likewise. * remote-udi.c (udi_xfer_inferior_memory): Likewise. * remote-vx.c (vx_xfer_memory): Likewise. * remote.c (remote_xfer_memory): Likewise. * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise. * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise. * target.h (#include "memattr.h"): Added. (target_ops.to_xfer_memory): Add attrib argument. * wince.c (_initialize_inftarg): Removed call to set_dcache_state. * dcache.h (set_dcache_state): Removed declaration. * dcache.c (set_dcache_state): Removed definition * dcache.c: Update module comment, as dcache is now enabled and disabled with memory region attributes instead of by the global variable "remotecache". Add comment describing the interaction between dcache and memory region attributes. (dcache_xfer_memory): Add comment describing benefits of moving cache writeback to a higher level. (dcache_struct): Removed cache_has_stuff field. This was used to record whether the cache had been accessed in order to invalidate it when it was disabled. However, this is not needed because the cache is write through and the code that enables, disables, and deletes memory regions invalidate the cache. Add comment which suggests that we could be more selective and only invalidate those cache lines containing data from those memory regions. (dcache_invalidate): Updated. (dcache_xfer_memory): Updated. (dcache_alloc): Don't abort() if dcache_enabled_p is clear. (dcache_xfer_memory): Removed code that called do_xfer_memory() to perform a uncached transfer if dcache_enabled_p was clear. This function is now only called if caching is enabled for the memory region. (dcache_info): Always print cache info. * target.c (do_xfer_memory): Add attrib argument. (target_xfer_memory, target_xfer_memory_partial): Break transfer into chunks defined by memory regions, pass region attributes to do_xfer_memory(). * dcache.c (dcache_read_line, dcache_write_line): Likewise. * Makefile.in (SFILES): Add memattr.c. (COMMON_OBS): Add memattr.o. (dcache.o): Add target.h to dependencies. * memattr.c: New file. * memattr.h: Likewise.
2001-01-04 * gdbint.texinfo (POP_FRAME): Document use by return_command.Nicholas Duffek2-1/+5
2000-12-25GDB version and refcard copyright fixed.Eli Zaretskii2-3/+8
2000-12-05* gdbint.texinfo (ECOFF_REG_TO_REGNUM, DWARF_REG_TO_REGNUM,Andrew Cagney2-0/+17
DWARF2_REG_TO_REGNUM): Document.
2000-11-24Add --enable-gdb-build-warnings=... to configure{,.in}.Andrew Cagney2-5/+11
2000-11-19 * gdb.texinfo (Continuing and Stepping): Fixed markup and typos,Eli Zaretskii2-12/+17
as suggested by Dmitry Sivachenko <dima@Chg.RU>.
2000-11-17* gdb.texinfo: Document new 'set step-mode' command.Christopher Faylor2-0/+21
2000-10-16Spelling changes from Dmitry Sivachenko <dima@Chg.RU>.Eli Zaretskii2-3/+8
2000-09-26 * gdb.texinfo (Hooks): Document the new post-hook functionality.Eli Zaretskii2-1/+43
From Steven Johnson <sbjohnson@ozemail.com.au>.
2000-08-10* gdbint.texinfo (Overall Structure): Spelling fix.Mark Kettenis2-1/+5
2000-08-10 * gdbint.texinfo (Target Architecture Definition): Document thatEli Zaretskii2-2/+16
REGISTER_CONVERT_TO_VIRTUAL should only be called on a register for which REGISTER_CONVERTIBLE returns a zero value.
2000-07-09 * Makefile.in (install-info): Find files to install in either the buildEli Zaretskii2-7/+21
or source directories (adapted from Makefile.am). (From Chris Faylor.)
2000-07-07 * stabs.texinfo: Fix spelling errors.Nicholas Duffek2-39/+43
(String Field): FILE-NUMBER starts from 0, not 1.
2000-07-05Remove \centerline from the blurb. Patch from Brian Youmans.Eli Zaretskii2-5/+11
2000-06-25 * Makefile.in (install-info): Support installation from outside ofEli Zaretskii2-1/+8
the source directory. Reported by Mark Harig <markh@frazier.landmark.com>.
2000-06-20* gdb.texinfo: Fix typo, $bpnum is set to last breakpoint number.J.T. Conklin2-1/+5
2000-05-31Import texinfo.tex from texinfo-4.0.Andrew Cagney5-4/+77
Add support for ``make pdf'' to the gdb/doc directory using pdftex.
2000-05-24 * gdb.texinfo: Remove duplicate @syncodeindex. From BrianEli Zaretskii2-4/+6
Youmans.
2000-05-24et al. not et.al.Andrew Cagney2-2/+7
2000-05-24Remove quotes from arround for loop arg.Andrew Cagney2-1/+6
2000-05-19updateJimmy Guo1-0/+4
2000-05-19regenerateJimmy Guo1-4/+30
2000-05-17 * mmalloc/Makefile.in (install-info): Make sure $(infodir) exists.Eli Zaretskii2-0/+12
Run install-info program on the installed Info files. * gdb/doc/Makefile.in (install-info): Run install-info on installed Info files.
2000-05-12Add Stan to authors attempt two. Also add et.al.Andrew Cagney2-2/+3
2000-05-12Add Andrew Cagney. Add Stan Shebs as an author.Andrew Cagney2-1/+6
2000-05-09 * gdb.texinfo: Proofreading changes from Brian Youmans.Eli Zaretskii2-8/+21
2000-05-01 * gdb.texinfo (Command Files): Mention -x, use @enumerate forNicholas Duffek2-10/+29
startup sequence, minor edits.
2000-05-01* gdbint.texinfo (RETURN_VALUE_ON_STACK): Document.Jim Blandy1-0/+37
2000-05-01 * annotate.texi: Remove "@syncodeindex fn cp", it causes grief inEli Zaretskii3-56/+67
TeX. * gdb.texinfo: Add "@syncodeindex fn cp". Convert all entries "@kindex f" into "@kindex f (foo)", otherwise we get index entries like `n' and `s' which look weird. Convert some of the @kindex to @vindex, when they refer to variables, not commands.