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/windows-tdep.c | |
parent | a11ac3b3e8ff6769badcf0041894f6c5acc1b94f (diff) | |
download | gdb-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.zip gdb-6cb06a8cdaaf30f5d879f24d37100cf1d25c6a3a.tar.gz 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/windows-tdep.c')
-rw-r--r-- | gdb/windows-tdep.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gdb/windows-tdep.c b/gdb/windows-tdep.c index 91fecd6..9049f1e 100644 --- a/gdb/windows-tdep.c +++ b/gdb/windows-tdep.c @@ -481,24 +481,24 @@ display_one_tib (ptid_t ptid) if (target_get_tib_address (ptid, &thread_local_base) == 0) { - printf_filtered (_("Unable to get thread local base for %s\n"), - target_pid_to_str (ptid).c_str ()); + gdb_printf (_("Unable to get thread local base for %s\n"), + target_pid_to_str (ptid).c_str ()); return -1; } if (target_read (current_inferior ()->top_target (), TARGET_OBJECT_MEMORY, NULL, tib, thread_local_base, tib_size) != tib_size) { - printf_filtered (_("Unable to read thread information " - "block for %s at address %s\n"), - target_pid_to_str (ptid).c_str (), - paddress (target_gdbarch (), thread_local_base)); + gdb_printf (_("Unable to read thread information " + "block for %s at address %s\n"), + target_pid_to_str (ptid).c_str (), + paddress (target_gdbarch (), thread_local_base)); return -1; } - printf_filtered (_("Thread Information Block %s at %s\n"), - target_pid_to_str (ptid).c_str (), - paddress (target_gdbarch (), thread_local_base)); + gdb_printf (_("Thread Information Block %s at %s\n"), + target_pid_to_str (ptid).c_str (), + paddress (target_gdbarch (), thread_local_base)); index = (gdb_byte *) tib; @@ -508,10 +508,10 @@ display_one_tib (ptid_t ptid) { val = extract_unsigned_integer (index, size, byte_order); if (i < max_name) - printf_filtered (_("%s is 0x%s\n"), TIB_NAME[i], phex (val, size)); + gdb_printf (_("%s is 0x%s\n"), TIB_NAME[i], phex (val, size)); else if (val != 0) - printf_filtered (_("TIB[0x%s] is 0x%s\n"), phex (i * size, 2), - phex (val, size)); + gdb_printf (_("TIB[0x%s] is 0x%s\n"), phex (i * size, 2), + phex (val, size)); index += size; } return 1; @@ -601,8 +601,8 @@ static void show_maint_show_all_tib (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { - fprintf_filtered (file, _("Show all non-zero elements of " - "Thread Information Block is %s.\n"), value); + gdb_printf (file, _("Show all non-zero elements of " + "Thread Information Block is %s.\n"), value); } |