List:Commits« Previous MessageNext Message »
From:kent Date:July 30 2007 6:40pm
Subject:bk commit into 4.1 tree (kent:1.2679) BUG#26218
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of kent. When kent 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, 2007-07-30 20:40:49+02:00, kent@stripped +1 -0
  my_pthread.c:
    Backport of correction for Mac OS X build problem, global variable not
    initiated is "common" and can't be used in shared libraries, unless
    special flags are used (bug#26218)

  mysys/my_pthread.c@stripped, 2007-07-30 20:38:48+02:00, kent@stripped +1 -1
    Backport of correction for Mac OS X build problem, global variable not
    initiated is "common" and can't be used in shared libraries, unless
    special flags are used (bug#26218)

diff -Nrup a/mysys/my_pthread.c b/mysys/my_pthread.c
--- a/mysys/my_pthread.c	2007-02-20 12:33:05 +01:00
+++ b/mysys/my_pthread.c	2007-07-30 20:38:48 +02:00
@@ -30,7 +30,7 @@
 #define SCHED_POLICY SCHED_OTHER
 #endif
 
-uint thd_lib_detected;
+uint thd_lib_detected= 0;
 
 #ifndef my_pthread_setprio
 void my_pthread_setprio(pthread_t thread_id,int prior)
Thread
bk commit into 4.1 tree (kent:1.2679) BUG#26218kent30 Jul