* ada-tasks.c (short_task_info): Eliminate the "Running" task state.

This commit is contained in:
Joel Brobecker 2009-03-31 16:31:24 +00:00
parent bad34192e5
commit 4a5a99175a
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-03-31 Joel Brobecker <brobecker@adacore.com>
* ada-tasks.c (short_task_info): Eliminate the "Running" task state.
2009-03-31 Pedro Alves <pedro@codesourcery.com>
* remote.c (remote_notice_new_inferior): Use ptid_is_pid. Check

View File

@ -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]));