From: danielk1977 Date: Tue, 24 Feb 2009 18:40:49 +0000 (+0000) Subject: Remove old declaration of sqlite3_pending_byte (which was used by test code). It... X-Git-Tag: version-3.6.15~429 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b0223ecf65184bdf273f9925a81723591634517;p=thirdparty%2Fsqlite.git Remove old declaration of sqlite3_pending_byte (which was used by test code). It has been replaced by sqlite3PendingByte. Ticket #3677. (CVS 6321) FossilOrigin-Name: 44f0162ebb760dd6926ee5691752b6798e3aacb9 --- diff --git a/manifest b/manifest index 3f152f663f..6ae72a395f 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fixes\sand\ssome\sextra\stest\scases\sfor\scount(*)\soptimization.\s(CVS\s6320) -D 2009-02-24T18:33:15 +C Remove\sold\sdeclaration\sof\ssqlite3_pending_byte\s(which\swas\sused\sby\stest\scode).\sIt\shas\sbeen\sreplaced\sby\ssqlite3PendingByte.\sTicket\s#3677.\s(CVS\s6321) +D 2009-02-24T18:40:50 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in d64baddbf55cdf33ff030e14da837324711a4ef7 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -138,7 +138,7 @@ F src/mutex_unix.c 2f936339dfef1a4c142db290d575a3509b77315f F src/mutex_w32.c f4b6a4a48f1dfff7f0089cba9b5a371691f17b8b F src/os.c ed93a6b46132a602c4fd7a58142e2981c829c79d F src/os.h fa3f4aa0119ff721a2da4b47ffd74406ac864c05 -F src/os_common.h 24525d8b7bce66c374dfc1810a6c9043f3359b60 +F src/os_common.h 8c61457df58f1a4bd5f5adc3e90e01b37bf7afbc F src/os_os2.c bed77dc26e3a95ce4a204936b9a1ca6fe612fcc5 F src/os_unix.c 4e916cafbf5ec0166213ac62d680ebbe12b8c5a7 F src/os_win.c 45cb430884da7e9360a55a0fcd5c2c44c22dd79d @@ -702,7 +702,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P 4a12f5b818b769d7518c942ff3dedf453dde698e -R d37add306fd93c06febcf46f01525da8 +P 3f0baa1b63df31f7dc885fd39290ca12ad2be6df +R 1a2f353bd0baf8e9e632784c84221af5 U danielk1977 -Z 6c6a246b0d032d8c6796d74983b15024 +Z 680899f7e8365c47fe6ad6bbcc963a0b diff --git a/manifest.uuid b/manifest.uuid index 642473b62e..cf38451300 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -3f0baa1b63df31f7dc885fd39290ca12ad2be6df \ No newline at end of file +44f0162ebb760dd6926ee5691752b6798e3aacb9 \ No newline at end of file diff --git a/src/os_common.h b/src/os_common.h index 5fab7a4642..03d1d74946 100644 --- a/src/os_common.h +++ b/src/os_common.h @@ -17,7 +17,7 @@ ** This file should be #included by the os_*.c files only. It is not a ** general purpose header file. ** -** $Id: os_common.h,v 1.37 2008/05/29 20:22:37 shane Exp $ +** $Id: os_common.h,v 1.38 2009/02/24 18:40:50 danielk1977 Exp $ */ #ifndef _OS_COMMON_H_ #define _OS_COMMON_H_ @@ -31,15 +31,6 @@ # error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." #endif - -/* - * When testing, this global variable stores the location of the - * pending-byte in the database file. - */ -#ifdef SQLITE_TEST -unsigned int sqlite3_pending_byte = 0x40000000; -#endif - #ifdef SQLITE_DEBUG int sqlite3OSTrace = 0; #define OSTRACE1(X) if( sqlite3OSTrace ) sqlite3DebugPrintf(X)