1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

patches to compile for WinNT (CVS 115)

FossilOrigin-Name: 47dfec3aaa896073ee0e26db428f0dc9b27f94f3
This commit is contained in:
drh
2000-07-31 13:38:24 +00:00
parent 1050f9875f
commit 82ad383270
6 changed files with 37 additions and 22 deletions

View File

@@ -26,7 +26,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.14 2000/07/28 14:32:49 drh Exp $
** $Id: main.c,v 1.15 2000/07/31 13:38:26 drh Exp $
*/
#include "sqliteInt.h"
@@ -290,7 +290,7 @@ static int sqlite_default_busy_callback(
int count /* Number of times table has been busy */
){
int rc;
#ifdef HAVE_USLEEP
#if defined(HAVE_USLEEP) && HAVE_USLEEP
int delay = 10000;
int prior_delay = 0;
int timeout = (int)Timeout;