summaryrefslogtreecommitdiff
path: root/gdb/ada-tasks.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2009-03-31 16:31:23 +0000
committerJoel Brobecker <brobecker@gnat.com>2009-03-31 16:31:23 +0000
commit6999df1e2bc1dc0758782220f3b05997f1cb12cc (patch)
treeea887d4a13c32c220d557e8b96d929abe0c5986b /gdb/ada-tasks.c
parent6f72e3aabb5003b122630ba710030e0724b753e9 (diff)
downloadgdb-6999df1e2bc1dc0758782220f3b05997f1cb12cc.tar.gz
* ada-tasks.c (short_task_info): Eliminate the "Running" task state.
Diffstat (limited to 'gdb/ada-tasks.c')
-rw-r--r--gdb/ada-tasks.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/ada-tasks.c b/gdb/ada-tasks.c
index d0ce5ab1bdf..750449107e0 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]));