mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* gdb.texinfo (Break Commands): Remove stuff about flushing terminal
input when evaluating breakpoint conditions; the bug has been fixed. * gdb.texinfo (Continuing and Stepping): Argument to "continue" sets the ignore count to N-1, not to N.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
Tue Jul 6 12:24:34 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* gdb.texinfo (Break Commands): Remove stuff about flushing terminal
|
||||||
|
input when evaluating breakpoint conditions; the bug has been fixed.
|
||||||
|
|
||||||
|
* gdb.texinfo (Continuing and Stepping): Argument to "continue"
|
||||||
|
sets the ignore count to N-1, not to N.
|
||||||
|
|
||||||
Thu Jul 1 14:57:42 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
Thu Jul 1 14:57:42 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
|
||||||
|
|
||||||
* refcard.tex (\hoffset): correct longstanding error to match
|
* refcard.tex (\hoffset): correct longstanding error to match
|
||||||
|
@ -2496,6 +2496,19 @@ end
|
|||||||
@end example
|
@end example
|
||||||
|
|
||||||
@cindex lost output
|
@cindex lost output
|
||||||
|
@c Do we need to mention this at all? I am sort of tempted to mention
|
||||||
|
@c it in case people are used to seeing this section of the manual. But
|
||||||
|
@c for new users it is an annoyance--it documents something which isn't
|
||||||
|
@c there. -kingdon, 6 Jul 93
|
||||||
|
Previous versions of @value{GDBN} (4.9 and earlier) would flush pending
|
||||||
|
input when executing breakpoint commands, if your program used raw mode
|
||||||
|
for the terminal. This is no longer true.
|
||||||
|
|
||||||
|
@ignore
|
||||||
|
@c I don't think this is true any longer, now that only readline
|
||||||
|
@c switches to or from raw mode. In any event, it is a (relatively
|
||||||
|
@c easily fixable) GDB bug if it switches to or from raw mode except
|
||||||
|
@c when it has to in order to read input from the terminal. kingdon -6 Jul 93.
|
||||||
One deficiency in the operation of automatically continuing breakpoints
|
One deficiency in the operation of automatically continuing breakpoints
|
||||||
under Unix appears when your program uses raw mode for the terminal.
|
under Unix appears when your program uses raw mode for the terminal.
|
||||||
@value{GDBN} switches back to its own terminal modes (not raw) before executing
|
@value{GDBN} switches back to its own terminal modes (not raw) before executing
|
||||||
@ -2519,6 +2532,7 @@ program will not stop. No input is lost here, because @value{GDBN} evaluates
|
|||||||
break conditions without changing the terminal modes. When you want
|
break conditions without changing the terminal modes. When you want
|
||||||
to have nontrivial conditions for performing the side effects, the
|
to have nontrivial conditions for performing the side effects, the
|
||||||
operators @samp{&&}, @samp{||} and @samp{?@dots{}:} may be useful.
|
operators @samp{&&}, @samp{||} and @samp{?@dots{}:} may be useful.
|
||||||
|
@end ignore
|
||||||
|
|
||||||
@ifclear CONLY
|
@ifclear CONLY
|
||||||
@node Breakpoint Menus
|
@node Breakpoint Menus
|
||||||
@ -2623,19 +2637,21 @@ a breakpoint or to a signal. (If due to a signal, you may want to use
|
|||||||
@end ifclear
|
@end ifclear
|
||||||
|
|
||||||
@table @code
|
@table @code
|
||||||
@item continue @r{[}@var{ignore-count}@r{]}
|
@item continue @r{[}@var{count}@r{]}
|
||||||
@itemx c @r{[}@var{count}@r{]}
|
@itemx c @r{[}@var{count}@r{]}
|
||||||
@itemx fg @r{[}@var{count}@r{]}
|
@itemx fg @r{[}@var{count}@r{]}
|
||||||
@kindex continue
|
@kindex continue
|
||||||
@kindex c
|
@kindex c
|
||||||
@kindex fg
|
@kindex fg
|
||||||
Resume program execution, at the address where your program last stopped;
|
Resume program execution, at the address where your program last
|
||||||
any breakpoints set at that address are bypassed. The optional argument
|
stopped; any breakpoints set at that address are bypassed. The optional
|
||||||
@var{ignore-count} allows you to specify a further number of times to
|
argument @var{count} means to set the ignore count of a breakpoint which
|
||||||
ignore a breakpoint at this location; its effect is like that of
|
you are stopped at to @var{count} @minus{} 1, just like the @code{ignore}
|
||||||
@code{ignore} (@pxref{Conditions, ,Break conditions}).
|
command (@pxref{Conditions, ,Break conditions}). This means that the
|
||||||
|
program does not stop at that breakpoint until the @var{count}th time
|
||||||
|
it is hit.
|
||||||
|
|
||||||
The argument @var{ignore-count} is meaningful only when your program
|
The argument @var{count} is meaningful only when your program
|
||||||
stopped due to a breakpoint. At other times, the argument to
|
stopped due to a breakpoint. At other times, the argument to
|
||||||
@code{continue} is ignored.
|
@code{continue} is ignored.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user