List:Commits« Previous MessageNext Message »
From:msvensson Date:February 28 2007 3:40pm
Subject:bk commit into 5.0 tree (msvensson:1.2453)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson 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-02-28 16:40:03+01:00, msvensson@stripped +8 -0
  Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint-bug20166
  into  pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
  MERGE: 1.2447.1.7

  BitKeeper/deleted/.del-init_db.sql@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.4.1.2

  BitKeeper/deleted/.del-init_db.sql~a77d572c39d5a1f8@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.14.1.2

  BitKeeper/etc/ignore@stripped, 2007-02-28 16:40:00+01:00, msvensson@stripped +0 -1
    auto-union
    MERGE: 1.241.1.1

  client/mysqltest.c@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.283.1.1

  mysql-test/Makefile.am@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.85.1.1

  mysql-test/lib/mtr_process.pl@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.49.1.1

  mysql-test/mysql-test-run.pl@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.198.1.2

  sql/mysqld.cc@stripped, 2007-02-28 16:40:01+01:00, msvensson@stripped +0 -0
    Auto merged
    MERGE: 1.598.1.2

# 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:	msvensson
# Host:	pilot.blaudden
# Root:	/home/msvensson/mysql/mysql-5.0-maint/RESYNC

--- 1.600/sql/mysqld.cc	2007-02-27 14:54:31 +01:00
+++ 1.601/sql/mysqld.cc	2007-02-28 16:40:01 +01:00
@@ -2037,7 +2037,10 @@ static void check_data_home(const char *
 
 extern "C" sig_handler handle_segfault(int sig)
 {
+  time_t curr_time;
+  struct tm tm;
   THD *thd=current_thd;
+
   /*
     Strictly speaking, one needs a mutex here
     but since we have got SIGSEGV already, things are a mess
@@ -2051,11 +2054,17 @@ extern "C" sig_handler handle_segfault(i
   }
 
   segfaulted = 1;
+
+  curr_time= time(NULL);
+  localtime_r(&curr_time, &tm);
+
   fprintf(stderr,"\
-mysqld got signal %d;\n\
+%02d%02d%02d %2d:%02d:%02d - mysqld got signal %d;\n\
 This could be because you hit a bug. It is also possible that this binary\n\
 or one of the libraries it was linked against is corrupt, improperly built,\n\
 or misconfigured. This error can also be caused by malfunctioning hardware.\n",
+          tm.tm_year % 100, tm.tm_mon+1, tm.tm_mday,
+          tm.tm_hour, tm.tm_min, tm.tm_sec,
 	  sig);
   fprintf(stderr, "\
 We will try our best to scrape up some info that will hopefully help diagnose\n\
Thread
bk commit into 5.0 tree (msvensson:1.2453)msvensson28 Feb