Changeset 1570 for trunk/dll/comp.c
- Timestamp:
- Jun 13, 2011, 12:09:19 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/comp.c
r1563 r1570 76 76 23 Oct 10 GKY Add ForwardslashToBackslash function to streamline code 77 77 29 May 11 SHL Rework >65K records logic - prior fix was not quite right 78 12 Jun 11 GKY Added SleepIfNeeded in the container fill loop 78 79 79 80 ***********************************************************************/ … … 1343 1344 APIRET rc; 1344 1345 static BOOL fDone; 1346 ITIMER_DESC itdSleep = { 0 }; // 30 May 11 GKY 1345 1347 1346 1348 if (!str || !*str) { … … 1376 1378 pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL); 1377 1379 if (!rc) { 1380 InitITimer(&itdSleep, 500); 1378 1381 do { 1379 1382 pffbFile = pffbArray; … … 1423 1426 ulFindCnt = FilesToGet; 1424 1427 rc = xDosFindNext(hDir, pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL); 1428 SleepIfNeeded(&itdSleep, 1); 1425 1429 } while (!rc); 1426 1430
Note:
See TracChangeset
for help on using the changeset viewer.