Changeset 1553 for trunk/dll/init.c
- Timestamp:
- Nov 20, 2010, 10:18:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1551 r1553 98 98 09 MAY 10 JBS Ticket 434: Make fDontSuggestAgain a "global" flag, not a per app flag 99 99 23 Oct 10 GKY Changes to populate and utilize a HELPTABLE for context specific help 100 20 Nov 10 GKY Rework scanning code to remove redundant scans, prevent double directory 101 entries in the tree container, fix related semaphore performance using 102 combination of event and mutex semaphores 100 103 101 104 ***********************************************************************/ … … 196 199 HMTX hmtxFM2Delete; 197 200 HMTX hmtxFM2Globals; 201 HMTX hmtxScanning; 198 202 HEV hevTreeCnrScanComplete; 199 203 ULONG OS2ver[2]; … … 1108 1112 if (DosCreateMutexSem(NULL, &hmtxFM2Globals, 0L, FALSE)) 1109 1113 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1114 PCSZ_DOSCREATEMUTEXSEM); 1115 if (DosCreateMutexSem(NULL, &hmtxScanning, 0L, FALSE)) 1116 Dos_Error(MB_CANCEL, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 1110 1117 PCSZ_DOSCREATEMUTEXSEM); 1111 1118 if (DosCreateMutexSem(NULL, &hmtxFM2Delete, 0L, FALSE))
Note:
See TracChangeset
for help on using the changeset viewer.