diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-03-31 16:31:24 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-03-31 16:31:24 +0000 |
commit | 4a5a99175a3e523546ec06195caecf3a10551ac6 (patch) | |
tree | 540b0af2ff5b9c0c72f3b9a5d8a4127bbd165e1a /gdb/ada-tasks.c | |
parent | bad34192e56554fda247b1d0c72cfb18bc7f83bf (diff) | |
download | gdb-4a5a99175a3e523546ec06195caecf3a10551ac6.zip gdb-4a5a99175a3e523546ec06195caecf3a10551ac6.tar.gz gdb-4a5a99175a3e523546ec06195caecf3a10551ac6.tar.bz2 |
* ada-tasks.c (short_task_info): Eliminate the "Running" task state.
Diffstat (limited to 'gdb/ada-tasks.c')
-rw-r--r-- | gdb/ada-tasks.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/ada-tasks.c b/gdb/ada-tasks.c index d0ce5ab..7504491 100644 --- a/gdb/ada-tasks.c +++ b/gdb/ada-tasks.c @@ -711,9 +711,6 @@ short_task_info (int taskno) else if (task_info->state == Entry_Caller_Sleep && task_info->called_task) printf_filtered (_(" Waiting on RV with %-3d"), get_task_number_from_id (task_info->called_task)); - else if (task_info->state == Runnable && active_task_p) - /* Replace "Runnable" by "Running" since this is the active task. */ - printf_filtered (" %-22s", _("Running")); else printf_filtered (" %-22s", _(task_states[task_info->state])); |