Changeset 238 for trunk/src/helpers/timer.c
- Timestamp:
- Dec 24, 2002, 8:44:35 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/timer.c
r222 r238 162 162 { 163 163 if (!G_hmtxTimers) 164 return (!DosCreateMutexSem(NULL,165 166 167 TRUE)); // request!168 else 169 164 return !DosCreateMutexSem(NULL, 165 &G_hmtxTimers, 166 0, 167 TRUE); // request! 168 169 return !DosRequestMutexSem(G_hmtxTimers, SEM_INDEFINITE_WAIT); 170 170 } 171 171 … … 207 207 ) 208 208 { 209 return (pTimer);209 return pTimer; 210 210 } 211 211 … … 394 394 } 395 395 396 return (pSet);396 return pSet; 397 397 } 398 398 … … 733 733 } 734 734 735 return (usrc);735 return usrc; 736 736 } 737 737
Note:
See TracChangeset
for help on using the changeset viewer.