]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* gdbmi.texinfo: Document selected-frame-changed, register-update,
authorKeith Seitz <keiths@redhat.com>
Fri, 9 Aug 2002 20:02:32 +0000 (20:02 +0000)
committerKeith Seitz <keiths@redhat.com>
Fri, 9 Aug 2002 20:02:32 +0000 (20:02 +0000)
        and context-changed events.

gdb/mi/ChangeLog
gdb/mi/gdbmi.texinfo

index de2fbaec654018f3eea2a7356959540961c12f5c..d2fc19fdd8869bc54a3068413fc66477a105fb7b 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-09  Keith Seitz  <keiths@redhat.com>
+
+       * gdbmi.texinfo: Document selected-frame-changed, register-update,
+       and context-changed events.
+
 2002-08-09  Keith Seitz  <keiths@redhat.com>
 
        * mi-main.c (mi_cmd_data_list_register_names): Add "-numbers"
index 37dc73d7ccdc9a38f8d4fb43367274995341d4a5..bebd6788e5502981946dcdcb33614d33318380c4 100644 (file)
@@ -521,6 +521,27 @@ such as registers.
 @smallexample
 =architecture-changed
 @end smallexample
+
+@item register-update
+A register has been changed in the inferior. The event will include the
+@code{number} of the register that the UI needs to update.
+@smallexample
+=register-changed,number="3"
+@end smallexample
+
+@item selected-frame-level-changed
+This event is sent whenever the user changes @value{GDBN}'s selected frame.
+The event will include the newly selected frame level.
+@smallexample
+=selected-frame-level-changed,level="3"
+@end smallexample
+
+@item context-changed
+The user has changed @value{GDBN}'s current thread. The event will include
+the newly selected thread number.
+@smallexample
+=context-changed,thread="2"
+@end smallexample
 @end table