diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-08-20 16:07:00 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-08-20 16:07:00 +0000 |
commit | 2a6bdf6d5bd66fb645c1fedd401f471d231988ee (patch) | |
tree | 5b3f031910ba26d3a9a592cd255a247282c0e28e /src/os_unix.c | |
parent | 967a4a1c965df8f55576617d8f4a42e9e2783a08 (diff) | |
download | sqlite-2a6bdf6d5bd66fb645c1fedd401f471d231988ee.tar.gz sqlite-2a6bdf6d5bd66fb645c1fedd401f471d231988ee.zip |
Call sqlite3OsSleep() with an argument in microseconds, not milliseconds. (CVS 4248)
FossilOrigin-Name: 917790413ced92266bf5c7cca6d130ed7ac6221b
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 828bbfd62..a67748f61 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -782,8 +782,8 @@ static int transferOwnership(unixFile *pFile){ #endif /* -** Seek to the offset in id->offset then read cnt bytes into pBuf. -** Return the number of bytes actually read. Update the offset. +** Seek to the offset passed as the second argument, then read cnt +** bytes into pBuf. Return the number of bytes actually read. */ static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){ int got; |