1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-12 12:25:37 +03:00

document DBUG_OUTPUT()

misc cleanup
This commit is contained in:
serg@serg.mylan
2004-11-11 14:42:35 +01:00
parent aafb2cf6a3
commit c77f478e1b
5 changed files with 9 additions and 11 deletions

View File

@@ -1,6 +1,3 @@
#include <my_global.h>
main (argc, argv)
int argc;
char *argv[];

View File

@@ -1,6 +1,3 @@
#include <my_global.h>
int debug = 0;
main (argc, argv)

View File

@@ -1,6 +1,3 @@
#include <my_global.h>
main (argc, argv)
int argc;
char *argv[];

View File

@@ -1,4 +1,4 @@
#include <dbug_long.h>
#include <dbug.h>
int main (argc, argv)
int argc;

View File

@@ -873,7 +873,14 @@ disabled by DBUG_OFF togeher with the
.I dbug
library. So there will be no need to disable asserts separately with NDEBUG.
.SP 1
EX:\ \fCDBUG_ASSERT(\ a\ >\ 0);\fR
EX:\ \fCDBUG_ASSERT(\ a\ >\ 0\ );\fR
.SP 1
.LI DBUG_OUTPUT\
In multi-threaded environment disables (or enables) any
.I dbug
output from the current thread.
.SP 1
EX:\ \fCDBUG_OUTPUT(\ 0\ );\fR
.SP 1
.LE