diff options
author | Bob Rossi <bob@brasko.net> | 2005-05-29 03:13:19 +0000 |
---|---|---|
committer | Bob Rossi <bob@brasko.net> | 2005-05-29 03:13:19 +0000 |
commit | 034dad6fa14741c4392485c2e64120bef895c4ee (patch) | |
tree | a037ec1564fdd6b9d2efcb4e64effcc091d514d8 /gdb/doc | |
parent | 0915f927adbf740ae6b4192d0378091163024b03 (diff) | |
download | gdb-034dad6fa14741c4392485c2e64120bef895c4ee.zip gdb-034dad6fa14741c4392485c2e64120bef895c4ee.tar.gz gdb-034dad6fa14741c4392485c2e64120bef895c4ee.tar.bz2 |
This is a cleanup change. It is the beggining of allowing GDB/MI to be
better understood (internally).
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 33 |
2 files changed, 37 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 7ff998d..ff4c191 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-28 Bob Rossi <bob@brasko.net> + + * gdb.texinfo (GDB/MI Out-of-band Records): Add bullet enumerating + the possible reasons why an exec async record would be returned to FE. + 2005-05-26 Andrew Cagney <cagney@gnu.org> * gdb.texinfo: Note that Elena Zannoni, Fernando Nasser, and diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 809ce4d..f642ab7 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -16969,9 +16969,40 @@ consequence of @sc{gdb/mi} (e.g., a breakpoint modified) or a result of target activity (e.g., target stopped). The following is a preliminary list of possible out-of-band records. +In particular, the @var{exec-async-output} records. @table @code -@item "*" "stop" +@item *stopped,reason="@var{reason}" +@end table + +@var{reason} can be one of the following: + +@table @code +@item breakpoint-hit +A breakpoint was reached. +@item watchpoint-trigger +A watchpoint was triggered. +@item read-watchpoint-trigger +A read watchpoint was triggered. +@item access-watchpoint-trigger +An access watchpoint was triggered. +@item function-finished +An -exec-finish or similar CLI command was accomplished. +@item location-reached +An -exec-until or similar CLI command was accomplished. +@item watchpoint-scope +A watchpoint has gone out of scope. +@item end-stepping-range +An -exec-next, -exec-next-instruction, -exec-step, -exec-step-instruction or +similar CLI command was accomplished. +@item exited-signalled +The inferior exited because of a signal. +@item exited +The inferior exited. +@item exited-normally +The inferior exited normally. +@item signal-received +A signal was received by the inferior. @end table |