Changeset 6584 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Aug 25, 2001, 12:38:50 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r6086 r6584 1 /* $Id: HandleManager.cpp,v 1. 69 2001-06-23 19:43:49sandervl Exp $ */1 /* $Id: HandleManager.cpp,v 1.70 2001-08-25 10:38:50 sandervl Exp $ */ 2 2 3 3 /* … … 2238 2238 if(handle) { 2239 2239 dprintf(("CreateEvent: return handle of existing event semaphore %x", handle)); 2240 SetLastError(ERROR_ALREADY_EXISTS); 2240 2241 return handle; 2241 2242 } … … 2314 2315 if(handle) { 2315 2316 dprintf(("CreateMutex: return handle of existing mutex semaphore %x", handle)); 2317 SetLastError(ERROR_ALREADY_EXISTS); 2316 2318 return handle; 2317 2319 } … … 2525 2527 if(handle) { 2526 2528 dprintf(("CreateSemaphore: return handle of existing semaphore %x", handle)); 2529 SetLastError(ERROR_ALREADY_EXISTS); 2527 2530 return handle; 2528 2531 } … … 3026 3029 PHMHANDLE pHMHandle; /* pointer to the handle structure in the table */ 3027 3030 3031 3032 if(dwWakeMask == 0) { 3033 dprintf(("WARNING: wakemask == 0 -> calling WaitForMultipleObjects")); 3034 return HMWaitForMultipleObjects(cObjects, lphObjects, fWaitAll, dwTimeout); 3035 } 3028 3036 /* validate handle */ 3029 3037 iIndex = _HMHandleQuery(*lphObjects); /* get the index */
Note:
See TracChangeset
for help on using the changeset viewer.