aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/ax.cc
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2022-01-16 21:27:58 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2022-01-18 13:44:32 -0500
commitc058728c31684d08da396f1bf50fabaa196dc9d9 (patch)
tree8e0d08d18cf135f7071fa9ee37dd549ee86656a8 /gdbserver/ax.cc
parentc68665c7260985ac8497ccafcea961f4a261c675 (diff)
downloadgdb-c058728c31684d08da396f1bf50fabaa196dc9d9.zip
gdb-c058728c31684d08da396f1bf50fabaa196dc9d9.tar.gz
gdb-c058728c31684d08da396f1bf50fabaa196dc9d9.tar.bz2
gdbserver: introduce threads_debug_printf, THREADS_SCOPED_DEBUG_ENTER_EXIT
Add the threads_debug_printf and THREADS_SCOPED_DEBUG_ENTER_EXIT, which use the logging infrastructure from gdbsupport/common-debug.h. Replace all debug_print uses that are predicated by debug_threads with threads_dethreads_debug_printf. Replace uses of the debug_enter and debug_exit macros with THREADS_SCOPED_DEBUG_ENTER_EXIT, which serves essentially the same purpose, but allows showing what comes between the enter and the exit in an indented form. Note that "threads" debug is currently used for a bit of everything in GDBserver, not only threads related stuff. It should ideally be cleaned up and separated logically as is done in GDB, but that's out of the scope of this patch. Change-Id: I2d4546464462cb4c16f7f1168c5cec5a89f2289a
Diffstat (limited to 'gdbserver/ax.cc')
-rw-r--r--gdbserver/ax.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbserver/ax.cc b/gdbserver/ax.cc
index 4f36bc5..365bd21 100644
--- a/gdbserver/ax.cc
+++ b/gdbserver/ax.cc
@@ -39,7 +39,7 @@ ax_vdebug (const char *fmt, ...)
#ifdef IN_PROCESS_AGENT
fprintf (stderr, PROG "/ax: %s\n", buf);
#else
- debug_printf (PROG "/ax: %s\n", buf);
+ threads_debug_printf (PROG "/ax: %s", buf);
#endif
va_end (ap);
}