From: <fir...@us...> - 2015-10-09 00:09:49
|
Revision: 62335 http://sourceforge.net/p/firebird/code/62335 Author: firebirds Date: 2015-10-09 00:09:47 +0000 (Fri, 09 Oct 2015) 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 2015-10-08 14:45:39 UTC (rev 62334) +++ firebird/trunk/ChangeLog 2015-10-09 00:09:47 UTC (rev 62335) @@ -1,3 +1,54 @@ + 2015-10-08 14:45 alexpeshkoff + M src/yvalve/DistributedTransaction.cpp +Fixed CORE-4951: Message "Incorrect parameters provided to internal function INF_transaction_info Invalid token" is reported when trying to commit 2PC transaction + + 2015-10-08 13:24 dimitr + M src/dsql/BoolNodes.cpp +Misc. + + 2015-10-08 12:07 hvlad + M src/gpre/boot/gpre_meta_boot.cpp + M src/include/firebird/FirebirdInterface.idl + M src/include/firebird/IdlFbInterfaces.h + M src/yvalve/MasterImplementation.cpp + M src/yvalve/MasterImplementation.h +Change type as Adriano suggests + + 2015-10-08 08:52 alexpeshkoff + M src/common/classes/alloc.cpp +Fixed return type - thanks to Vlad + + 2015-10-08 08:07 hvlad + M src/alice/main/aliceMain.cpp + M src/burp/main/burpMain.cpp + M src/gpre/gpre.cpp + M src/isql/isql.epp + M src/qli/dtr.cpp + M src/utilities/fbsvcmgr/fbsvcmgr.cpp + M src/utilities/fbtracemgr/traceMgrMain.cpp + M src/utilities/gsec/main/gsecMain.cpp + M src/utilities/gstat/main/gstatMain.cpp + M src/utilities/nbackup/main/nbkMain.cpp +All utilities call fb_shutdown on exit + + 2015-10-08 07:41 hvlad + M src/common/classes/ImplementHelper.h + M src/common/classes/init.cpp + M src/common/classes/init.h + M src/common/dllinst.cpp + M src/common/dllinst.h + M src/gpre/boot/gpre_meta_boot.cpp + M src/include/firebird/FirebirdInterface.idl + M src/include/firebird/IdlFbInterfaces.h + M src/jrd/os/win32/ibinitdll.cpp + M src/yvalve/MasterImplementation.cpp + M src/yvalve/MasterImplementation.h + M src/yvalve/why.cpp +Detect case when DLL unloaded after ExitProcess was called. +In such case all threads are killed by OS thus any synchronization is potentially dangerous and could lead to hung-up. +When this condition is detected all kind of cleanup (including engine shutdown) is skipped. +It fixed CORE-4938 and similar issues. + 2015-10-07 18:24 asfernandes M lang_helpers/gds_codes.ftn M lang_helpers/gds_codes.pas Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2015-10-08 14:45:39 UTC (rev 62334) +++ firebird/trunk/src/jrd/build_no.h 2015-10-09 00:09:47 UTC (rev 62335) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32070 + FORMAL BUILD NUMBER:32076 */ -#define PRODUCT_VER_STRING "3.0.0.32070" -#define FILE_VER_STRING "WI-V3.0.0.32070" -#define LICENSE_VER_STRING "WI-V3.0.0.32070" -#define FILE_VER_NUMBER 3, 0, 0, 32070 +#define PRODUCT_VER_STRING "3.0.0.32076" +#define FILE_VER_STRING "WI-V3.0.0.32076" +#define LICENSE_VER_STRING "WI-V3.0.0.32076" +#define FILE_VER_NUMBER 3, 0, 0, 32076 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32070" +#define FB_BUILD_NO "32076" #define FB_BUILD_TYPE "V" #define FB_BUILD_SUFFIX "Firebird 3.0 Release Candidate 1" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2015-10-08 14:45:39 UTC (rev 62334) +++ firebird/trunk/src/misc/writeBuildNum.sh 2015-10-09 00:09:47 UTC (rev 62335) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=32070 +BuildNum=32076 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |