From: <fir...@us...> - 2011-04-26 03:19:55
|
Revision: 52811 http://firebird.svn.sourceforge.net/firebird/?rev=52811&view=rev Author: firebirds Date: 2011-04-26 03:19:48 +0000 (Tue, 26 Apr 2011) 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 2011-04-26 01:00:33 UTC (rev 52810) +++ firebird/trunk/ChangeLog 2011-04-26 03:19:48 UTC (rev 52811) @@ -1,3 +1,45 @@ + 2011-04-26 01:00 asfernandes + M src/jrd/Attachment.cpp + M src/jrd/EngineInterface.h + M src/jrd/blb.h + M src/jrd/extds/InternalDS.cpp + M src/jrd/jrd.cpp + M src/yvalve/why.cpp +Misc; reinterpret to static casts; correction in YRequest version. + + 2011-04-25 17:47 alexpeshkoff + M src/burp/burp.cpp + D src/common/classes/PublicHandle.cpp + D src/common/classes/PublicHandle.h + M src/dsql/dsql.cpp + M src/dsql/dsql.h + M src/include/ProviderInterface.h + M src/jrd/Attachment.cpp + M src/jrd/Attachment.h + M src/jrd/Database.h + A src/jrd/EngineInterface.h + M src/jrd/JrdStatement.cpp + M src/jrd/JrdStatement.h + M src/jrd/blb.cpp + M src/jrd/blb.h + M src/jrd/extds/InternalDS.cpp + M src/jrd/extds/InternalDS.h + M src/jrd/jrd.cpp + M src/jrd/jrd_proto.h + M src/jrd/tra.cpp + M src/jrd/tra.h + M src/remote/client/interface.cpp + M src/yvalve/why.cpp +1. Use reference counted stable in global pool objects instead PublicHandle's validation. +2. Avoid massive segfaults when closing heavily loaded server. +3. Restored logic in YValve required for correct shutdown. +4. Do not change externally visible request body when preparing it. + + 2011-04-25 12:56 hvlad + M src/common/isc_sync.cpp +Frontported fix for regression introduced by me in patch for CORE-3326 - too many unnecessary calls of ISC_check_process_existence(). +Added defines to switch usage of fast mutex off if necessary. + 2011-04-20 07:03 robocop M builds/win32/make_all.bat It would be better to copy the file from the place where it exists. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2011-04-26 01:00:33 UTC (rev 52810) +++ firebird/trunk/src/jrd/build_no.h 2011-04-26 03:19:48 UTC (rev 52811) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:29307 + FORMAL BUILD NUMBER:29310 */ -#define PRODUCT_VER_STRING "3.0.0.29307" -#define FILE_VER_STRING "WI-T3.0.0.29307" -#define LICENSE_VER_STRING "WI-T3.0.0.29307" -#define FILE_VER_NUMBER 3, 0, 0, 29307 +#define PRODUCT_VER_STRING "3.0.0.29310" +#define FILE_VER_STRING "WI-T3.0.0.29310" +#define LICENSE_VER_STRING "WI-T3.0.0.29310" +#define FILE_VER_NUMBER 3, 0, 0, 29310 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "29307" +#define FB_BUILD_NO "29310" #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 2011-04-26 01:00:33 UTC (rev 52810) +++ firebird/trunk/src/misc/writeBuildNum.sh 2011-04-26 03:19:48 UTC (rev 52811) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=29307 +BuildNum=29310 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |