diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:46:15 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | 6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a (patch) | |
tree | 641a6a86240919fe4ba9219fbbbe15bc6331c22d /gdb/ada-tasks.c | |
parent | a11ac3b3e8ff6769badcf0041894f6c5acc1b94f (diff) | |
download | fsf-binutils-gdb-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.zip fsf-binutils-gdb-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.tar.gz fsf-binutils-gdb-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.tar.bz2 |
Unify gdb printf functions
Now that filtered and unfiltered output can be treated identically, we
can unify the printf family of functions. This is done under the name
"gdb_printf". Most of this patch was written by script.
Diffstat (limited to 'gdb/ada-tasks.c')
-rw-r--r-- | gdb/ada-tasks.c | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/gdb/ada-tasks.c b/gdb/ada-tasks.c index 6a41d5f..5622772 100644 --- a/gdb/ada-tasks.c +++ b/gdb/ada-tasks.c @@ -1223,23 +1223,23 @@ info_task (struct ui_out *uiout, const char *taskno_str, struct inferior *inf) task_info = &data->task_list[taskno - 1]; /* Print the Ada task ID. */ - printf_filtered (_("Ada Task: %s\n"), - paddress (target_gdbarch (), task_info->task_id)); + gdb_printf (_("Ada Task: %s\n"), + paddress (target_gdbarch (), task_info->task_id)); /* Print the name of the task. */ if (task_info->name[0] != '\0') - printf_filtered (_("Name: %s\n"), task_info->name); + gdb_printf (_("Name: %s\n"), task_info->name); else fprintf_styled (gdb_stdout, metadata_style.style (), _("<no name>\n")); /* Print the TID and LWP. */ - printf_filtered (_("Thread: 0x%s\n"), phex_nz (task_info->ptid.tid (), - sizeof (ULONGEST))); - printf_filtered (_("LWP: %#lx\n"), task_info->ptid.lwp ()); + gdb_printf (_("Thread: 0x%s\n"), phex_nz (task_info->ptid.tid (), + sizeof (ULONGEST))); + gdb_printf (_("LWP: %#lx\n"), task_info->ptid.lwp ()); /* If set, print the base CPU. */ if (task_info->base_cpu != 0) - printf_filtered (_("Base CPU: %d\n"), task_info->base_cpu); + gdb_printf (_("Base CPU: %d\n"), task_info->base_cpu); /* Print who is the parent (if any). */ if (task_info->parent != 0) @@ -1248,16 +1248,16 @@ info_task (struct ui_out *uiout, const char *taskno_str, struct inferior *inf) { struct ada_task_info *parent = &data->task_list[parent_taskno - 1]; - printf_filtered (_("Parent: %d"), parent_taskno); + gdb_printf (_("Parent: %d"), parent_taskno); if (parent->name[0] != '\0') - printf_filtered (" (%s)", parent->name); - printf_filtered ("\n"); + gdb_printf (" (%s)", parent->name); + gdb_printf ("\n"); } else - printf_filtered (_("No parent\n")); + gdb_printf (_("No parent\n")); /* Print the base priority. */ - printf_filtered (_("Base Priority: %d\n"), task_info->priority); + gdb_printf (_("Base Priority: %d\n"), task_info->priority); /* print the task current state. */ { @@ -1266,27 +1266,27 @@ info_task (struct ui_out *uiout, const char *taskno_str, struct inferior *inf) if (task_info->caller_task) { target_taskno = get_task_number_from_id (task_info->caller_task, inf); - printf_filtered (_("State: Accepting rendezvous with %d"), - target_taskno); + gdb_printf (_("State: Accepting rendezvous with %d"), + target_taskno); } else if (task_info->called_task) { target_taskno = get_task_number_from_id (task_info->called_task, inf); - printf_filtered (_("State: Waiting on task %d's entry"), - target_taskno); + gdb_printf (_("State: Waiting on task %d's entry"), + target_taskno); } else - printf_filtered (_("State: %s"), _(long_task_states[task_info->state])); + gdb_printf (_("State: %s"), _(long_task_states[task_info->state])); if (target_taskno) { ada_task_info *target_task_info = &data->task_list[target_taskno - 1]; if (target_task_info->name[0] != '\0') - printf_filtered (" (%s)", target_task_info->name); + gdb_printf (" (%s)", target_task_info->name); } - printf_filtered ("\n"); + gdb_printf ("\n"); } } @@ -1316,15 +1316,15 @@ display_current_task_id (void) const int current_task = ada_get_task_number (inferior_thread ()); if (current_task == 0) - printf_filtered (_("[Current task is unknown]\n")); + gdb_printf (_("[Current task is unknown]\n")); else { struct ada_tasks_inferior_data *data = get_ada_tasks_inferior_data (current_inferior ()); struct ada_task_info *task_info = &data->task_list[current_task - 1]; - printf_filtered (_("[Current task is %s]\n"), - task_to_str (current_task, task_info).c_str ()); + gdb_printf (_("[Current task is %s]\n"), + task_to_str (current_task, task_info).c_str ()); } } @@ -1372,8 +1372,8 @@ task_command_1 (const char *taskno_str, int from_tty, struct inferior *inf) switch_to_thread (tp); ada_find_printable_frame (get_selected_frame (NULL)); - printf_filtered (_("[Switching to task %s]\n"), - task_to_str (taskno, task_info).c_str ()); + gdb_printf (_("[Switching to task %s]\n"), + task_to_str (taskno, task_info).c_str ()); print_stack_frame (get_selected_frame (NULL), frame_relative_level (get_selected_frame (NULL)), SRC_AND_LOC, 1); |