From: <fir...@us...> - 2012-06-22 04:27:27
|
Revision: 54657 http://firebird.svn.sourceforge.net/firebird/?rev=54657&view=rev Author: firebirds Date: 2012-06-22 04:27:21 +0000 (Fri, 22 Jun 2012) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2012-06-21 15:37:38 UTC (rev 54656) +++ firebird/trunk/ChangeLog 2012-06-22 04:27:21 UTC (rev 54657) @@ -1,3 +1,52 @@ + 2012-06-21 15:37 dimitr + M src/jrd/Attachment.cpp + M src/jrd/Attachment.h + M src/jrd/CryptoManager.cpp + M src/jrd/Database.cpp + M src/jrd/Database.h + M src/jrd/DatabaseSnapshot.cpp + M src/jrd/Function.epp + M src/jrd/GlobalRWLock.cpp + M src/jrd/GlobalRWLock.h + M src/jrd/Relation.cpp + M src/jrd/Relation.h + M src/jrd/VirtualTable.cpp + M src/jrd/btr.cpp + M src/jrd/cch.cpp + M src/jrd/cmp.cpp + M src/jrd/dfw.epp + M src/jrd/event.cpp + M src/jrd/event.h + M src/jrd/event_proto.h + M src/jrd/idx.cpp + M src/jrd/intl.cpp + M src/jrd/jrd.cpp + M src/jrd/lck.cpp + M src/jrd/lck.h + M src/jrd/lck_proto.h + M src/jrd/met.epp + M src/jrd/nbak.cpp + M src/jrd/nbak.h + M src/jrd/pag.cpp + M src/jrd/pag.h + M src/jrd/rlck.cpp + M src/jrd/sdw.cpp + M src/jrd/tpc.cpp + M src/jrd/tra.cpp + M src/jrd/vio.cpp + M src/lock/lock.cpp + M src/lock/lock_proto.h + M src/lock/print.cpp +1) Removed the no longer actual "parent lock" concept from both the lock and event managers. +2) Reworked the lock manager synchronization: added the RAII mutex holders and avoided dirty reads for the shared memory. +3) Encapsulated lck_length into the Lock class + small related refactoring. +4) Front ported recent fixes from the v2.x branches. +5) Misc cleanup. + + 2012-06-21 07:17 alexpeshkoff + M builds/install/misc/firebird.conf.in +Added parameter to firebird.conf, thanks to Carlos + 2012-06-20 11:47 alexpeshkoff M doc/README.services_extension M src/burp/burp.cpp Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2012-06-21 15:37:38 UTC (rev 54656) +++ firebird/trunk/src/jrd/build_no.h 2012-06-22 04:27:21 UTC (rev 54657) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30010 + FORMAL BUILD NUMBER:30012 */ -#define PRODUCT_VER_STRING "3.0.0.30010" -#define FILE_VER_STRING "WI-T3.0.0.30010" -#define LICENSE_VER_STRING "WI-T3.0.0.30010" -#define FILE_VER_NUMBER 3, 0, 0, 30010 +#define PRODUCT_VER_STRING "3.0.0.30012" +#define FILE_VER_STRING "WI-T3.0.0.30012" +#define LICENSE_VER_STRING "WI-T3.0.0.30012" +#define FILE_VER_NUMBER 3, 0, 0, 30012 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30010" +#define FB_BUILD_NO "30012" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Unstable" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2012-06-21 15:37:38 UTC (rev 54656) +++ firebird/trunk/src/misc/writeBuildNum.sh 2012-06-22 04:27:21 UTC (rev 54657) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30010 +BuildNum=30012 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |