Home | History | Annotate | Download | only in dist

Lines Matching refs:microsec

24657 static int os2Sleep( sqlite3_vfs *pVfs, int microsec ){
24658 DosSleep( (microsec/1000) );
24659 return microsec;
35661 static int winSleep(sqlite3_vfs *pVfs, int microsec){
35662 osSleep((microsec+999)/1000);
35664 return ((microsec+999)/1000)*1000;