diff options
author | David D. Zuhn <zoo@cygnus> | 1992-11-23 03:31:21 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1992-11-23 03:31:21 +0000 |
commit | f8f374394016774e75340de8cbff27f2dba42825 (patch) | |
tree | 6286a81a2f8fe8867328ebd32db1b814ec87e541 /gdb | |
parent | 4d1e5a4e87d2fcd48d53c01aa4fa9aab0c72a98f (diff) | |
download | gdb-f8f374394016774e75340de8cbff27f2dba42825.zip gdb-f8f374394016774e75340de8cbff27f2dba42825.tar.gz gdb-f8f374394016774e75340de8cbff27f2dba42825.tar.bz2 |
minor typo correction
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/gdbint.texinfo | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 56c64a5..711a50b 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -372,8 +372,6 @@ etc.; see @file{Makefile.in}. Contains C macro definitions describing the native system environment, such as child process control and core file support. Crib from existing @file{nm-*.h} files to create a new one. -Code that needs these definitions will have to @code{#include "nm.h"} -explicitly, since it is not included by @file{defs.h}. @item gdb/@var{xxx}-nat.c Contains any miscellaneous C code required for this native support @@ -928,6 +926,9 @@ what they say. This is only done if you ask that it be done. Syntax: @table @code +@item struct cleanup *@var{old_chain}; +Declare a variable which will hold a cleanup chain handle. + @item @var{old_chain} = make_cleanup (@var{function}, @var{arg}); Make a cleanup which will cause @var{function} to be called with @var{arg} (a @code{char *}) later. The result, @var{old_chain}, is a handle that can be @@ -2279,7 +2280,8 @@ Define this if the native-dependent code will provide its own routines @code{fetch_inferior_registers} and @code{store_inferior_registers} in @file{@var{HOST}-nat.c}. -If this symbol is @emph{not} defined, the default routines in +If this symbol is @emph{not} defined, and @file{infptrace.c} +is included in this configuration, the default routines in @file{infptrace.c} are used for these functions. @item GET_LONGJMP_TARGET For most machines, this is a target-dependent parameter. On the DECstation @@ -2297,13 +2299,15 @@ definition in @file{procfs.c}. @item REGISTER_U_ADDR Defines the offset of the registers in the ``u area''; @pxref{Host}. @item USE_PROC_FS -This determines whether small routines that translate register values -to GDB's internal representation (from the /proc representation), and vice -verse, are compiled. +This determines whether small routines in @file{*-tdep.c}, which +translate register values +between GDB's internal representation and the /proc representation, +are compiled. @item U_REGS_OFFSET This is the offset of the registers in the upage. It need only be defined if the generic ptrace register access routines in @file{infptrace.c} are being used (that is, +@file{infptrace.c} is configured in, and @code{FETCH_INFERIOR_REGISTERS} is not defined). If the default value from @file{infptrace.c} is good enough, leave it undefined. |