- Timestamp:
- Jul 22, 2016 12:46:53 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r60883 r62436 2666 2666 uint16_t const iGroup = RT_HI_U16(fFlagsAndGroup); 2667 2667 if ( iGroup != UINT16_MAX 2668 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | RTLOGGRPFLAGS_ENABLED))2669 != (fFlags | RTLOGGRPFLAGS_ENABLED)))2668 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED)) 2669 != (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED))) 2670 2670 pLogger = NULL; 2671 2671 } -
trunk/src/VBox/Runtime/common/log/logrel.cpp
r57358 r62436 97 97 uint16_t const iGroup = RT_HI_U16(fFlagsAndGroup); 98 98 if ( iGroup != UINT16_MAX 99 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | RTLOGGRPFLAGS_ENABLED))100 != (fFlags | RTLOGGRPFLAGS_ENABLED)))99 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED)) 100 != (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED))) 101 101 pLogger = NULL; 102 102 } -
trunk/src/VBox/Runtime/common/time/timesupref.h
r54940 r62436 314 314 * No joy must try again. 315 315 */ 316 #ifdef _MSC_VER 317 # pragma warning(disable: 4702) 318 #endif 316 319 #ifndef IN_RING3 317 320 ASMSetFlags(uFlags); -
trunk/src/VBox/Runtime/generic/critsect-generic.cpp
r59039 r62436 298 298 */ 299 299 IPRT_CRITSECT_WAITING(pCritSect, NULL, cLockers, (void *)pCritSect->NativeThreadOwner); 300 #if ndef RTCRITSECT_STRICT300 #if !defined(RTCRITSECT_STRICT) && defined(IN_RING3) 301 301 RTTHREAD hThreadSelf = RTThreadSelf(); 302 302 #endif
Note:
See TracChangeset
for help on using the changeset viewer.