This parameter is unused, and probably will never be useful.
gdb/ChangeLog:
* ada-tasks.c (info_tasks): Delete parameter `from_tty'.
+2011-09-16 Joel Brobecker <brobecker@adacore.com>
+
+ * ada-tasks.c (info_tasks): Delete parameter `from_tty'.
+
2011-09-16 Joel Brobecker <brobecker@adacore.com>
* ada-lang.h (ada_build_task_list): Remove parameter
/* FIXME: Shouldn't we be using ui_out??? */
static void
-info_tasks (int from_tty, struct inferior *inf)
+info_tasks (struct inferior *inf)
{
struct ada_tasks_inferior_data *data = get_ada_tasks_inferior_data (inf);
int taskno;
}
if (arg == NULL || *arg == '\0')
- info_tasks (from_tty, current_inferior ());
+ info_tasks (current_inferior ());
else
info_task (arg, from_tty, current_inferior ());
}