List:Commits« Previous MessageNext Message »
From:U-ROWVWADEjas Date:April 6 2007 8:30pm
Subject:bk commit into 5.1-falcon tree (jas:1.2562)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1-falcon repository of . When  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-04-06 14:30:07-04:00, jas@rowvwade. +1 -0
  Fix portability problem in SyncObject.h included indirectly
  from ha_falcon.cpp.

  storage/falcon/SyncObject.h@stripped, 2007-04-06 14:30:00-04:00, jas@rowvwade. +4 -2
    Fix portability problem in SyncObject.h included indirectly
    from ha_falcon.cpp.

# 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:	jas
# Host:	rowvwade.
# Root:	D:/MySQL/mysql-5.1-falcon

--- 1.6/storage/falcon/SyncObject.h	2007-04-06 14:30:24 -04:00
+++ 1.7/storage/falcon/SyncObject.h	2007-04-06 14:30:24 -04:00
@@ -27,7 +27,9 @@
 
 #include "SynchronizationObject.h"
 
-//#define INTERLOCK_TYPE	int
+#ifndef INTERLOCK_TYPE
+#define INTERLOCK_TYPE	int
+#endif
 
 #ifdef POSIX_THREADS
 #include <pthread.h>
@@ -93,7 +95,7 @@
 
 #ifdef TRACE_SYNC_OBJECTS
 	int					objectId;
-	volatile long		sharedCount;
+	INTERLOCK_TYPE		sharedCount;
 	int					exclusiveCount;
 	int					waitCount;
 	int					queueLength;
Thread
bk commit into 5.1-falcon tree (jas:1.2562)U-ROWVWADEjas6 Apr