aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport/common-debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gdbsupport/common-debug.cc')
-rw-r--r--gdbsupport/common-debug.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/gdbsupport/common-debug.cc b/gdbsupport/common-debug.cc
index d1131a0..b8fd133 100644
--- a/gdbsupport/common-debug.cc
+++ b/gdbsupport/common-debug.cc
@@ -35,3 +35,14 @@ debug_printf (const char *fmt, ...)
debug_vprintf (fmt, ap);
va_end (ap);
}
+
+/* See gdbsupport/common-debug.h. */
+
+void
+debug_prefixed_vprintf (const char *module, const char *func, const char *format,
+ va_list args)
+{
+ debug_printf ("[%s] %s: ", module, func);
+ debug_vprintf (format, args);
+ debug_printf ("\n");
+}