gdb/gdbserver/debug.h - gdb

Macros defined

Source code

  1. /* Debugging routines for the remote server for GDB.
  2.    Copyright (C) 2014-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef DEBUG_H
  15. #define DEBUG_H

  16. /* We declare debug format variables here, and debug_threads but no other
  17.    debug content variables (e.g., not remote_debug) because while this file
  18.    is not currently used by IPA it may be some day, and IPA may have its own
  19.    set of debug content variables.  It's ok to declare debug_threads here
  20.    because it is misnamed - a better name is debug_basic or some such,
  21.    which can work for any program, gdbserver or IPA.  If/when this file is
  22.    used with IPA it is recommended to fix debug_thread's name.  */
  23. extern int debug_threads;
  24. extern int debug_timestamp;

  25. void debug_flush (void);
  26. void do_debug_enter (const char *function_name);
  27. void do_debug_exit (const char *function_name);

  28. /* These macros are for use in major functions that produce a lot of
  29.    debugging output.  They help identify in the mass of debugging output
  30.    when these functions enter and exit.  debug_enter is intended to be
  31.    called at the start of a function, before any other debugging output.
  32.    debug_exit is intended to be called at the end of the same function,
  33.    after all debugging output.  */
  34. #ifdef FUNCTION_NAME
  35. #define debug_enter() \
  36.   do { do_debug_enter (FUNCTION_NAME); } while (0)
  37. #define debug_exit() \
  38.   do { do_debug_exit (FUNCTION_NAME); } while (0)
  39. #else
  40. #define debug_enter() \
  41.   do { } while (0)
  42. #define debug_exit() \
  43.   do { } while (0)
  44. #endif

  45. #endif /* DEBUG_H */