List:Commits« Previous MessageNext Message »
From:Alexey Kopytov Date:August 26 2006 8:21am
Subject:bk commit into 5.0 tree (kaa:1.2253) BUG#21250
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kaa. When kaa 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, 2006-08-26 10:21:26+04:00, kaa@stripped +1 -0
  Post-review fix (bug #21250)

  sql/stacktrace.c@stripped, 2006-08-26 10:21:23+04:00, kaa@stripped +4 -0
    Post-review fix (bug #21250)

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	kaa
# Host:	polly.local
# Root:	/home/kaa/src/maint/m50-maint--07OGt

--- 1.17/sql/stacktrace.c	2006-08-26 10:21:31 +04:00
+++ 1.18/sql/stacktrace.c	2006-08-26 10:21:31 +04:00
@@ -61,8 +61,12 @@ void check_thread_lib(void)
 {
   char buf[5];
 
+#ifdef _CS_GNU_LIBPTHREAD_VERSION
   confstr(_CS_GNU_LIBPTHREAD_VERSION, buf, sizeof(buf));
   is_nptl = !strncasecmp(buf, "NPTL", sizeof(buf));
+#else
+  is_nptl = 0;
+#endif
 }
 
 #if defined(__alpha__) && defined(__GNUC__)
Thread
bk commit into 5.0 tree (kaa:1.2253) BUG#21250Alexey Kopytov26 Aug