1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a few compilation issues that can occur with certain compilers (e.g. GCC 2.95.3, MSVC).

FossilOrigin-Name: f970a3de61fe2ebaf1778c4a3383cfdc52299162
This commit is contained in:
mistachkin
2012-06-18 08:00:56 +00:00
parent 8ba0d1cbca
commit c8bde37d19
5 changed files with 21 additions and 17 deletions

View File

@@ -109,8 +109,6 @@ static int winMutex_isInit = 0;
*/
static long winMutex_lock = 0;
extern void sqlite3_win32_sleep(DWORD milliseconds); /* os_win.c */
static int winMutexInit(void){
/* The first to increment to 1 does actual initialization */
if( InterlockedCompareExchange(&winMutex_lock, 1, 0)==0 ){
@@ -126,6 +124,7 @@ static int winMutexInit(void){
}else{
/* Someone else is in the process of initing the static mutexes */
while( !winMutex_isInit ){
extern void sqlite3_win32_sleep(DWORD milliseconds); /* os_win.c */
sqlite3_win32_sleep(1);
}
}