]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Minor comment change to test_async.c. No code changes. (CVS 5702)
authordanielk1977 <danielk1977@noemail.net>
Mon, 15 Sep 2008 15:49:34 +0000 (15:49 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Mon, 15 Sep 2008 15:49:34 +0000 (15:49 +0000)
FossilOrigin-Name: b134106000e2e694cf5e1e5ae2f5b1e2956ee74a

manifest
manifest.uuid
src/test_async.c

index 9dc8ade5b30f87243fa64ecef391755dd56ac6aa..2faba63354f5aa31cbc3f2cd6c0fb8090dd1e1b3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Adjust\sthe\spage\srecycling\salgorithm\sso\sthat\sthe\snumber\sof\spages\sallocated\nto\seach\sconnection\sdoes\snot\sexceed\sits\scache_size\slimit.\s(CVS\s5701)
-D 2008-09-15T15:36:58
+C Minor\scomment\schange\sto\stest_async.c.\sNo\scode\schanges.\s(CVS\s5702)
+D 2008-09-15T15:49:34
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in d15a7ebfe5e057a72a49805ffb302dbb601c8329
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -165,7 +165,7 @@ F src/test6.c 0a0304a69cfa4962a429d084c6d451ff9e4fb572
 F src/test7.c 475b1fa7e3275408b40a3cbdc9508cbdc41ffa02
 F src/test8.c 3637439424d0d21ff2dcf9b015c30fcc1e7bcb24
 F src/test9.c 904ebe0ed1472d6bad17a81e2ecbfc20017dc237
-F src/test_async.c 2f644e5c4ee4ecc568234a22b98d992deda6006e
+F src/test_async.c de6661370d96f660e0f0d604582c193c6144b19c
 F src/test_autoext.c f53b0cdf7bf5f08100009572a5d65cdb540bd0ad
 F src/test_btree.c 8d5b835054f1dd15992e09864a8bc04386bab701
 F src/test_config.c b2681a8e1b570f0c3686c934d6ef6112921af05d
@@ -636,7 +636,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 5c954b40ecb71203b1013c23cdac54ff83484b0a
-R dc88c00a1c805cb4941b70045df2df2e
-U drh
-Z c3d0d50b48385323dd5a9627ae00e19c
+P 3bc221b940565133ae8d95f59b3b120e57df0124
+R 169d88f35cd96cb7ad2b2ca745637258
+U danielk1977
+Z 0fe4cdd19c8dedfd7534f209f2501a4f
index 4807c86650dbe7f16405d1630d4c78866703513e..7ce4c5fed6d6828965bbfa78c3b1633d134d2ff7 100644 (file)
@@ -1 +1 @@
-3bc221b940565133ae8d95f59b3b120e57df0124
\ No newline at end of file
+b134106000e2e694cf5e1e5ae2f5b1e2956ee74a
\ No newline at end of file
index d255d0dcd9b43e03233ddb5b3f94c0132e357615..77da3149c0baea4f9826893e0772d3d4395c13ea 100644 (file)
@@ -10,7 +10,7 @@
 **
 *************************************************************************
 **
-** $Id: test_async.c,v 1.46 2008/09/15 14:08:04 danielk1977 Exp $
+** $Id: test_async.c,v 1.47 2008/09/15 15:49:34 danielk1977 Exp $
 **
 ** This file contains an example implementation of an asynchronous IO 
 ** backend for SQLite.
@@ -27,7 +27,7 @@
 ** You lose the Durable property.  With the default I/O backend of SQLite,
 ** once a write completes, you know that the information you wrote is
 ** safely on disk.  With the asynchronous I/O, this is not the case.  If
-** your program crashes or if a power lose occurs after the database
+** your program crashes or if a power loss occurs after the database
 ** write but before the asynchronous write thread has completed, then the
 ** database change might never make it to disk and the next user of the
 ** database might not see your change.
@@ -162,10 +162,10 @@ static void asyncTrace(const char *zFormat, ...){
 **       protected by the async.queueMutex. As are the async.ioError and
 **       async.nFile variables.
 **
-**     * The async.aLock hash-table and all AsyncLock and AsyncFileLock
+**     * The async.pLock list and all AsyncLock and AsyncFileLock
 **       structures must be protected by the async.lockMutex mutex.
 **
-**     * The file handles from the underlying system are assumed not to 
+**     * The file handles from the underlying system are not assumed to 
 **       be thread safe.
 **
 **     * See the last two paragraphs under "The Writer Thread" for