8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:00:38 +01:00

nightly update

This commit is contained in:
firebirds 2012-06-22 04:27:21 +00:00
parent 42a4c93b97
commit 36e9bb519f
3 changed files with 56 additions and 7 deletions

View File

@ -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

View File

@ -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"

View File

@ -9,7 +9,7 @@ BuildType=T
MajorVer=3
MinorVer=0
RevNo=0
BuildNum=30010
BuildNum=30012
NowAt=`pwd`
cd `dirname $0`