Changeset 1838 for trunk/dll/init.c
- Timestamp:
- Aug 3, 2015, 12:14:21 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1830 r1838 131 131 30 Aug 14 GKY Add semaphore hmtxFiltering to prevent freeing dcd while filtering. Prevents 132 132 a trap when FM2 is shutdown while directory containers are still populating 133 02 Aug 15 GKY Serialize local hard drive scanning to reduce drive thrashing continue to scan 134 all other drive types in separate threads. 133 135 134 136 ***********************************************************************/ … … 233 235 HMTX hmtxFM2Globals; 234 236 HMTX hmtxScanning; 237 HMTX hmtxScanningLocalHD; 238 HMTX hmtxScanningLocal; 235 239 HMTX hmtxFiltering; 236 240 HEV hevTreeCnrScanComplete; … … 1165 1169 if (DosCreateMutexSem(NULL, &hmtxScanning, 0L, TRUE)) 1166 1170 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1171 PCSZ_DOSCREATEMUTEXSEM); 1172 if (DosCreateMutexSem(NULL, &hmtxScanningLocalHD, 0L, FALSE)) 1173 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1174 PCSZ_DOSCREATEMUTEXSEM); 1175 if (DosCreateMutexSem(NULL, &hmtxScanningLocal, 0L, FALSE)) 1176 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1167 1177 PCSZ_DOSCREATEMUTEXSEM); 1168 1178 if (DosCreateMutexSem(NULL, &hmtxFM2Delete, 0L, FALSE))
Note:
See TracChangeset
for help on using the changeset viewer.