Changeset 813
- Timestamp:
- Aug 26, 2007, 11:44:03 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/grep.c ¶
r785 r813 24 24 13 Aug 07 SHL Move #pragma alloc_text to end for OpenWatcom compat 25 25 15 Aug 07 SHL Use FilesToGet directly 26 26 Aug 07 GKY Improved performance of FillDups 27 26 Aug 07 GKY DosSleep(1) in loops changed to (0) 26 28 27 29 ***********************************************************************/ … … 434 436 domatchingfiles(grep, searchPath, fle, numfls); 435 437 doallsubdirs(grep, searchPath, TRUE, fle, numfls); 436 DosSleep( 1);438 DosSleep(0); //26 Aug 07 GKY 1 437 439 } 438 440 } … … 519 521 if (*grep->stopflag) 520 522 break; 521 DosSleep( 1);523 DosSleep(0); //26 Aug 07 GKY 1 522 524 ulFindCnt = FilesToGet; 523 525 rc = DosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt); … … 597 599 } 598 600 if (grep->toinsert == FilesToGet) 599 DosSleep( 1);601 DosSleep(0); //26 Aug 07 GKY 1 600 602 freegreplist(grep); 601 603 PostMsg(grep->hwndFiles, UM_RESCAN, MPVOID, MPVOID); … … 950 952 else 951 953 break; 952 DosSleep( 1);954 DosSleep(0); //26 Aug 07 GKY 1 953 955 } 954 956 fclose(fp); … … 1111 1113 INT numfiles = 0, numalloced = 0, error; 1112 1114 register ULONG x = 0, y = 0; 1113 ULONG cntr = 100 ;1115 ULONG cntr = 1000; 1114 1116 1115 1117 if (grep->CRCdupes) 1116 cntr = 50;1118 cntr = 100; 1117 1119 i = grep->dupehead; 1118 1120 while (i) { … … 1122 1124 if (x) { 1123 1125 WinSetWindowText(grep->hwndCurFile, GetPString(IDS_GREPDUPESORTINGTEXT)); 1124 DosSleep( 1);1126 DosSleep(0); //26 Aug 07 GKY 1 1125 1127 grep->dupenames = xmalloc(sizeof(DUPES *) * (x + 1), pszSrcFile, __LINE__); 1126 1128 if (!grep->nosizedupes) … … 1138 1140 if (!grep->nosizedupes) 1139 1141 grep->dupesizes[y] = NULL; 1140 DosSleep( 1);1142 DosSleep(0); //26 Aug 07 GKY 1 1141 1143 qsort(grep->dupenames, 1142 1144 x, 1143 1145 sizeof(DUPES *), 1144 1146 ((grep->ignoreextdupes) ? comparenamesqe : comparenamesq)); 1145 DosSleep( 1);1147 DosSleep(0); //26 Aug 07 GKY 1 1146 1148 if (!grep->nosizedupes) { 1147 1149 qsort(grep->dupesizes, x, sizeof(DUPES *), comparesizesq); 1148 DosSleep( 1);1150 DosSleep(0); //26 Aug 07 GKY 1 1149 1151 } 1150 1152 WinSetWindowText(grep->hwndCurFile, GetPString(IDS_GREPDUPECOMPARINGTEXT)); … … 1282 1284 sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles); 1283 1285 WinSetWindowText(grep->hwndCurFile, s); 1284 DosSleep(1 00); //05 Aug 07 GKY 1281285 } 1286 DosSleep( y % 2);1286 DosSleep(1); //05 Aug 07 GKY 128 1287 } 1288 DosSleep(0); //26 Aug 07 GKY 1 1287 1289 } 1288 1290 } … … 1311 1313 sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles); 1312 1314 WinSetWindowText(grep->hwndCurFile, s); 1313 DosSleep( 1);1315 DosSleep(0); //26 Aug 07 GKY 1 1314 1316 } 1315 1317 y++; … … 1371 1373 } 1372 1374 else if (!(x % 100)) 1373 DosSleep( 1);1375 DosSleep(0); //26 Aug 07 GKY 1 1374 1376 } 1375 1377 c = c->next;
Note:
See TracChangeset
for help on using the changeset viewer.