> Since the time for sleeping is an integer number of seconds it's probably 
> simplest just to replace this call with one to sleep(10).  sleep() is defined 
> in POSIX.1 so I believe it should be available in a library for every 
> platform SQLite is expected to run on.

Windows has no sleep() - butis has Sleep().


#ifdef __WINDOWS__
#define sleep(x) Sleep(x * 1000)
#endif


Bye,
Michael

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to