From 63cfd11859c7d6b64ff86787af9686f0c2f925c9 Mon Sep 17 00:00:00 2001 From: "serg@serg.mylan" <> Date: Tue, 14 Feb 2006 22:36:11 +0100 Subject: dbug changes: 1. dbug state is now local to a thread 2. new macros: DBUG_EXPLAIN, DBUG_EXPLAIN_INITIAL, DBUG_SET, DBUG_SET_INITIAL, DBUG_EVALUATE, DBUG_EVALUATE_IF 3. macros are do{}while(0) wrapped 4. incremental modifications to the dbug state (e.g. "+d,info:-t") 5. dbug code cleanup, style fixes 6. _db_on_ and DEBUGGER_ON/OFF removed 7. rest of MySQL code fixed because of 3 (missing ;) and 6 8. dbug manual updated 9. server variable @@debug (global and local) to control dbug from SQL! a. -#T to print timestamps in the log --- mysys/my_init.c | 1 + 1 file changed, 1 insertion(+) (limited to 'mysys/my_init.c') diff --git a/mysys/my_init.c b/mysys/my_init.c index f28f47e090e..d4d7a26ebaa 100644 --- a/mysys/my_init.c +++ b/mysys/my_init.c @@ -213,6 +213,7 @@ Voluntary context switches %ld, Involuntary context switches %ld\n", WSACleanup(); #endif /* __WIN__ */ my_init_done=0; + DBUG_VOID_RETURN; } /* my_end */ -- cgit v1.2.1