diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-03-31 16:33:37 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-03-31 16:33:37 +0000 |
commit | 32cd1edcd2a5540d88d5dff3743dc58090cb0bd8 (patch) | |
tree | f5b023af808728f3e209af9948e729b95af9a91e /gdb/doc | |
parent | 4a5a99175a3e523546ec06195caecf3a10551ac6 (diff) | |
download | gdb-32cd1edcd2a5540d88d5dff3743dc58090cb0bd8.zip gdb-32cd1edcd2a5540d88d5dff3743dc58090cb0bd8.tar.gz gdb-32cd1edcd2a5540d88d5dff3743dc58090cb0bd8.tar.bz2 |
* gdb.texinfo (Ada Tasks): Remove the documentation about
the "Running" state, as this state has been eliminated.
Now all runnable tasks are shown as "Runnable".
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index aab4b06..c015a4d 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2009-03-31 Joel Brobecker <brobecker@adacore.com> + + * gdb.texinfo (Ada Tasks): Remove the documentation about + the "Running" state, as this state has been eliminated. + Now all runnable tasks are shown as "Runnable". + 2009-03-30 Stan Shebs <stan@codesourcery.com> * gdb.texinfo (Tracepoints): Describe tracepoints as a diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 3135c18..a1c0b80 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -11614,7 +11614,7 @@ This command shows a list of current Ada tasks, as in the following example: 1 8088000 0 15 Child Activation Wait main_task 2 80a4000 1 15 Accept Statement b 3 809a800 1 15 Child Activation Wait a -* 4 80ae800 3 15 Running c +* 4 80ae800 3 15 Runnable c @end smallexample @@ -11643,9 +11643,6 @@ Current state of the task. The task has been created but has not been activated. It cannot be executing. -@item Running -The task currently running. - @item Runnable The task is not blocked for any reason known to Ada. (It may be waiting for a mutex, though.) It is conceptually "executing" in normal mode. @@ -11701,7 +11698,7 @@ the following example: (@value{GDBP}) info tasks ID TID P-ID Pri State Name 1 8077880 0 15 Child Activation Wait main_task -* 2 807c468 1 15 Running task_1 +* 2 807c468 1 15 Runnable task_1 (@value{GDBP}) info task 2 Ada Task: 0x807c468 Name: task_1 @@ -11723,7 +11720,7 @@ This command prints the ID of the current task. (@value{GDBP}) info tasks ID TID P-ID Pri State Name 1 8077870 0 15 Child Activation Wait main_task -* 2 807c458 1 15 Running t +* 2 807c458 1 15 Runnable t (@value{GDBP}) task [Current task is 2] @end smallexample @@ -11741,7 +11738,7 @@ from the current task to the given task. (@value{GDBP}) info tasks ID TID P-ID Pri State Name 1 8077870 0 15 Child Activation Wait main_task -* 2 807c458 1 15 Running t +* 2 807c458 1 15 Runnable t (@value{GDBP}) task 1 [Switching to task 1] #0 0x8067726 in pthread_cond_wait () |