summaryrefslogtreecommitdiff
path: root/mysys/my_thr_init.c
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-04-24 15:23:32 +0300
committerunknown <monty@hundin.mysql.fi>2002-04-24 15:23:32 +0300
commita56d1215f52b8d6ed9428b358034f439e03cbf5b (patch)
tree79b32cfbee538d0d4db28eeb309cb763f4772623 /mysys/my_thr_init.c
parentd12b458c55e928ad72f3d4bcbba594ebb7f3884c (diff)
downloadmariadb-git-a56d1215f52b8d6ed9428b358034f439e03cbf5b.tar.gz
Fixed syntax error in mysql.cc
Docs/glibc-2.2.5.patch: Updated patch for glibc Docs/manual.texi: Updated 'MySQL server gone away' section client/mysql.cc: Fixed syntax error from last change mysys/my_thr_init.c: Changed EXTRA_DEBUG to EXTRA_DBUG_THREADS sql-bench/limits/mysql.cfg: Update to 4.0.2
Diffstat (limited to 'mysys/my_thr_init.c')
-rw-r--r--mysys/my_thr_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_thr_init.c b/mysys/my_thr_init.c
index 5b137df20f8..0bd542d2bd9 100644
--- a/mysys/my_thr_init.c
+++ b/mysys/my_thr_init.c
@@ -105,7 +105,7 @@ static long thread_id=0;
my_bool my_thread_init(void)
{
struct st_my_thread_var *tmp;
-#ifdef EXTRA_DEBUG
+#ifdef EXTRA_DEBUG_THREADS
fprintf(stderr,"my_thread_init(): thread_id=%ld\n",pthread_self());
#endif
#if !defined(__WIN__) || defined(USE_TLS) || ! defined(SAFE_MUTEX)
@@ -152,7 +152,7 @@ end:
void my_thread_end(void)
{
struct st_my_thread_var *tmp=my_thread_var;
-#ifdef EXTRA_DEBUG
+#ifdef EXTRA_DEBUG_THREADS
fprintf(stderr,"my_thread_end(): tmp=%p,thread_id=%ld\n",
tmp,pthread_self());
#endif