Changeset 8952 for trunk/src/kernel32/HandleManager.cpp
- Timestamp:
- Aug 1, 2002, 6:02:41 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/HandleManager.cpp
r8880 r8952 1 /* $Id: HandleManager.cpp,v 1. 89 2002-07-15 14:40:15sandervl Exp $ */1 /* $Id: HandleManager.cpp,v 1.90 2002-08-01 16:02:40 sandervl Exp $ */ 2 2 3 3 /* … … 2946 2946 { 2947 2947 dprintf(("ERROR: HMWaitForMultipleObjects: alloca failed to allocate %d handles", cObjects)); 2948 O32_SetLastError(ERROR_NOT_ENOUGH_MEMORY);2948 SetLastError(ERROR_NOT_ENOUGH_MEMORY); 2949 2949 return WAIT_FAILED; 2950 2950 } … … 2977 2977 2978 2978 *pLoop2 = *pLoop1; 2979 //// O32_SetLastError(ERROR_INVALID_HANDLE);2979 //// SetLastError(ERROR_INVALID_HANDLE); 2980 2980 //// return (WAIT_FAILED); 2981 2981 } … … 3081 3081 { 3082 3082 dprintf(("ERROR: HMMsgWaitForMultipleObjects: alloca failed to allocate %d handles", cObjects)); 3083 O32_SetLastError(ERROR_NOT_ENOUGH_MEMORY);3083 SetLastError(ERROR_NOT_ENOUGH_MEMORY); 3084 3084 return WAIT_FAILED; 3085 3085 } … … 3107 3107 3108 3108 *pLoop2 = *pLoop1; 3109 //// O32_SetLastError(ERROR_INVALID_HANDLE);3109 //// SetLastError(ERROR_INVALID_HANDLE); 3110 3110 //// return (WAIT_FAILED); 3111 3111 }
Note:
See TracChangeset
for help on using the changeset viewer.