diff options
author | Daniel Jacobowitz <drow@false.org> | 2009-11-25 20:43:29 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2009-11-25 20:43:29 +0000 |
commit | b6199126eec56a19b3d4cd365abe3ec29d4911b9 (patch) | |
tree | 21ac1b4b37cbb44eb4c5d186ad0aa43e73d24715 /gdb/doc/gdb.texinfo | |
parent | b22a05109740305648936be892937c15a5b0c2be (diff) | |
download | gdb-b6199126eec56a19b3d4cd365abe3ec29d4911b9.zip gdb-b6199126eec56a19b3d4cd365abe3ec29d4911b9.tar.gz gdb-b6199126eec56a19b3d4cd365abe3ec29d4911b9.tar.bz2 |
PR gdb/8704
* breakpoint.c (find_condition_and_thread): Correct task error message.
* c-exp.y (yylex): Stop before "thread N", "task N", or abbreviations
of those.
doc/
* gdb.texinfo (Thread-Specific Breakpoints): Thread specifiers
are allowed after the breakpoint condition.
testsuite/
* gdb.base/condbreak.exp: Test combinations of "break *EXP",
"if", and "thread". Correct matching in the previous test.
Diffstat (limited to 'gdb/doc/gdb.texinfo')
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index c1ccfc7..74cbedf 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -5214,8 +5214,8 @@ breakpoint, the breakpoint applies to @emph{all} threads of your program. You can use the @code{thread} qualifier on conditional breakpoints as -well; in this case, place @samp{thread @var{threadno}} before the -breakpoint condition, like this: +well; in this case, place @samp{thread @var{threadno}} before or +after the breakpoint condition, like this: @smallexample (@value{GDBP}) break frik.c:13 thread 28 if bartab > lim |