diff options
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 10 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 8 |
2 files changed, 14 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index ddf3ae5..80df9ad 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,13 @@ +2015-11-24 Pedro Alves <palves@redhat.com> + + PR 17539 + * gdb.texinfo (Inferiors and Programs): Adjust "maint info + program-spaces" example to ascending order listing. + (Threads): Adjust "info threads" example to ascending order + listing. + (Forks): Adjust "info inferiors" example to ascending order + listing. + 2015-11-04 Markus Metzger <markus.t.metzger@intel.com> * gdb.texinfo (Process Record and Replay): Document "record diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 254403d..1917008 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -2791,9 +2791,9 @@ example, the list of inferiors bound to the program space. @smallexample (@value{GDBP}) maint info program-spaces Id Executable +* 1 hello 2 goodbye Bound inferiors: ID 1 (process 21561) -* 1 hello @end smallexample Here we can see that no inferior is running the program @code{hello}, @@ -2938,9 +2938,9 @@ For example, @smallexample (@value{GDBP}) info threads Id Target Id Frame - 3 process 35 thread 27 0x34e5 in sigpause () - 2 process 35 thread 23 0x34e5 in sigpause () * 1 process 35 thread 13 main (argc=1, argv=0x7ffffff8) + 2 process 35 thread 23 0x34e5 in sigpause () + 3 process 35 thread 27 0x34e5 in sigpause () at threadtest.c:68 @end smallexample @@ -3254,8 +3254,8 @@ process 12020 is executing new program: prog2 Program exited normally. (@value{GDBP}) info inferiors Id Description Executable -* 2 <null> prog2 1 <null> prog1 +* 2 <null> prog2 @end smallexample @item same |