aboutsummaryrefslogtreecommitdiff
path: root/gdb/debug.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2020-10-02 14:44:39 -0400
committerSimon Marchi <simon.marchi@efficios.com>2020-10-02 14:47:26 -0400
commitba98841943b085891eb4bf4debc3981ac95bb7fb (patch)
tree5ca587e395283d3e301bb1b5801f01f1c1c2cab2 /gdb/debug.c
parentdb20ebdfae432f23def32f0b9bbf6e023c926235 (diff)
downloadgdb-ba98841943b085891eb4bf4debc3981ac95bb7fb.zip
gdb-ba98841943b085891eb4bf4debc3981ac95bb7fb.tar.gz
gdb-ba98841943b085891eb4bf4debc3981ac95bb7fb.tar.bz2
gdb: move debug_prefixed_vprintf here
The following patch needs to output debug prints from gdbsupport code. Move debug_prefixed_vprintf so that it is possible to use it from gdbsupport. gdb/ChangeLog: * debug.c (debug_prefixed_vprintf): Move to gdbsupport. * debug.h: Remove. * infrun.c: Include gdbsupport/common-debug.h. * linux-nat.c: Likewise. gdbsupport/ChangeLog: * common-debug.cc (debug_prefixed_vprintf): Move here. * common-debug.h (debug_prefixed_vprintf): Move here. Change-Id: I5170065fc10a7a49c0f1bba67c691decb2cf3bcb
Diffstat (limited to 'gdb/debug.c')
-rw-r--r--gdb/debug.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/gdb/debug.c b/gdb/debug.c
index f845a7e..fe571aa 100644
--- a/gdb/debug.c
+++ b/gdb/debug.c
@@ -19,7 +19,7 @@
#include "defs.h"
-#include "debug.h"
+#include "gdbsupport/common-debug.h"
/* See gdbsupport/common-debug.h. */
@@ -28,14 +28,3 @@ debug_vprintf (const char *fmt, va_list ap)
{
vfprintf_unfiltered (gdb_stdlog, fmt, ap);
}
-
-/* See 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");
-}