gdb: restore some checks of debug flags

This partially reverts some parts of the commit:

  commit 17417fb0ec
  Date:   Sat Oct 31 09:01:25 2020 -0400

      gdb, gdbsupport: add debug_prefixed_printf, remove boilerplate functions

This commit removed 3 places where some debug flags were being
checked.  The result was that debug tracing was being printed
unconditionally.

This commit adds back the 3 flag checks.

gdb/ChangeLog:

	* infrun.h (infrun_debug_printf): Add check of debug_infrun flag.
	(debug_prefixed_printf): Add check of debug_displaced flag.
	* linux-nat.c (linux_nat_debug_printf): Add check of
	debug_linux_nat flag.
This commit is contained in:
Andrew Burgess
2020-10-31 21:50:44 +00:00
parent 17417fb0ec
commit 4f0469cdd6
3 changed files with 25 additions and 3 deletions

View File

@@ -34,7 +34,12 @@ extern unsigned int debug_infrun;
/* Print an "infrun" debug statement. */
#define infrun_debug_printf(fmt, ...) \
debug_prefixed_printf ("infrun", __func__, fmt, ##__VA_ARGS__)
do \
{ \
if (debug_infrun) \
debug_prefixed_printf ("infrun", __func__, fmt, ##__VA_ARGS__); \
} \
while (0)
/* True if we are debugging displaced stepping. */
extern bool debug_displaced;
@@ -42,7 +47,12 @@ extern bool debug_displaced;
/* Print a "displaced" debug statement. */
#define displaced_debug_printf(fmt, ...) \
debug_prefixed_printf ("displaced", __func__, fmt, ##__VA_ARGS__)
do \
{ \
if (debug_displaced) \
debug_prefixed_printf ("displaced", __func__, fmt, ##__VA_ARGS__); \
} \
while (0)
/* Nonzero if we want to give control to the user when we're notified
of shared library events by the dynamic linker. */