From 4659e3b3672dd188d167d8dba5c9a429c3cdaf51 Mon Sep 17 00:00:00 2001 From: Dawn Perchik Date: Wed, 12 Feb 1997 22:48:45 +0000 Subject: * debugify.c, debugify.h: New files. Provide common macros for writing debug info to a log file or stdio. --- gdb/debugify.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 gdb/debugify.h (limited to 'gdb/debugify.h') diff --git a/gdb/debugify.h b/gdb/debugify.h new file mode 100644 index 0000000..e250910 --- /dev/null +++ b/gdb/debugify.h @@ -0,0 +1,42 @@ + +#ifndef _DEBUGIFY_H_ +#define _DEBUGIFY_H_ + +#ifdef DEBUGIFY +#include +#ifdef TO_SCREEN +#define DBG(x) OutputDebugString x +#elif TO_GDB +#define DBG(x) printf_unfiltered x +#elif TO_POPUP +#define DBG(x) MessageBox x +#else /* default: TO_FILE "gdb.log" */ +#define DBG(x) printf_dbg x +#endif + +#define ASSERT(x) assert(x) + +#else /* DEBUGIFY */ +#define DBG(x) +#define ASSERT(x) +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef REDIRECT +#define printf_unfiltered printf_dbg +#define fputs_unfiltered fputs_dbg +void fputs_dbg (const char *fmt, FILE *fakestream); +#endif /* REDIRECT */ + +void puts_dbg(const char *fmt); +void printf_dbg(const char *fmt,...); + +#ifdef __cplusplus +} +#endif + +#endif /* _DEBUGIFY_H_ */ + -- cgit v1.1