Below is the list of changes that have just been committed into a local
5.0 repository of thek. When thek does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2008-03-18 14:24:52+01:00, thek@adventure.(none) +1 -0
Bug#32059 thread_id is a long rather than ulong
thread_id should be defined as a dword (32 bit unsigned).
mysys/my_thr_init.c@stripped, 2008-03-18 14:24:50+01:00, thek@adventure.(none) +1 -1
* Change variable thread_id to unsigned long.
diff -Nrup a/mysys/my_thr_init.c b/mysys/my_thr_init.c
--- a/mysys/my_thr_init.c 2007-08-16 16:25:45 +02:00
+++ b/mysys/my_thr_init.c 2008-03-18 14:24:50 +01:00
@@ -223,7 +223,7 @@ void my_thread_global_end(void)
#endif
}
-static long thread_id=0;
+static ulong thread_id=0;
/*
Allocate thread specific memory for the thread, used by mysys and dbug