mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
8f62579c38
PSTACK, libmysqld and MySQL filesystem UPDATE ... ORDER BY DELETE ... ORDER BY New faster fulltext handling Faster compressed keys
24 lines
437 B
C
24 lines
437 B
C
/* $Header$ */
|
|
|
|
/*
|
|
* Debugging macros.
|
|
*/
|
|
|
|
#ifndef pstacktrace_h_
|
|
#define pstacktrace_h_
|
|
|
|
#define PSTACK_DEBUG 1
|
|
#undef PSTACK_DEBUG
|
|
|
|
#ifdef PSTACK_DEBUG
|
|
# define TRACE_PUTC(a) putc a
|
|
# define TRACE_FPUTS(a) fputs a
|
|
# define TRACE_FPRINTF(a) fprintf a
|
|
#else /* PSTACK_DEBUG */
|
|
# define TRACE_PUTC(a) (void)0
|
|
# define TRACE_FPUTS(a) (void)0
|
|
# define TRACE_FPRINTF(a) (void)0
|
|
#endif /* !PSTACK_DEBUG */
|
|
|
|
#endif /* pstacktrace_h_ */
|
|
|