List:Commits« Previous MessageNext Message »
From:jonas Date:September 4 2006 2:34pm
Subject:bk commit into 5.0 tree (jonas:1.2252)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of jonas. When jonas 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-09-04 14:34:42+02:00, jonas@stripped +2 -0
  Merge perch.ndb.mysql.com:/home/jonas/src/50-work
  into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
  MERGE: 1.2216.1.28

  sql/log.cc@stripped, 2006-09-04 14:34:40+02:00, jonas@stripped +0 -0
    Auto merged
    MERGE: 1.191.1.1

  sql/sql_class.h@stripped, 2006-09-04 14:34:40+02:00, jonas@stripped +0 -0
    Auto merged
    MERGE: 1.288.1.9

# 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/mysql-5.0-ndb/RESYNC

--- 1.192/sql/log.cc	2006-09-04 14:34:46 +02:00
+++ 1.193/sql/log.cc	2006-09-04 14:34:46 +02:00
@@ -723,12 +723,17 @@
 int MYSQL_LOG::get_current_log(LOG_INFO* linfo)
 {
   pthread_mutex_lock(&LOCK_log);
+  int ret = raw_get_current_log(linfo);
+  pthread_mutex_unlock(&LOCK_log);
+  return ret;
+}
+
+int MYSQL_LOG::raw_get_current_log(LOG_INFO* linfo)
+{
   strmake(linfo->log_file_name, log_file_name, sizeof(linfo->log_file_name)-1);
   linfo->pos = my_b_tell(&log_file);
-  pthread_mutex_unlock(&LOCK_log);
   return 0;
 }
-
 
 /*
   Move all data up in a file in an filename index file

--- 1.293/sql/sql_class.h	2006-09-04 14:34:46 +02:00
+++ 1.294/sql/sql_class.h	2006-09-04 14:34:46 +02:00
@@ -342,6 +342,7 @@
 		   bool need_mutex);
   int find_next_log(LOG_INFO* linfo, bool need_mutex);
   int get_current_log(LOG_INFO* linfo);
+  int raw_get_current_log(LOG_INFO* linfo);
   uint next_file_id();
   inline bool is_open() { return log_type != LOG_CLOSED; }
   inline char* get_index_fname() { return index_file_name;}
Thread
bk commit into 5.0 tree (jonas:1.2252)jonas4 Sep