Changeset 49134 in vbox for trunk/src/VBox
- Timestamp:
- Oct 16, 2013 12:24:39 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89987
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r49026 r49134 3423 3423 } while (0) 3424 3424 #else /* Release builds */ 3425 # define HMSVM_VALIDATE_EXIT_HANDLER_PARAMS() do { } while (0)3425 # define HMSVM_VALIDATE_EXIT_HANDLER_PARAMS() do { } while (0) 3426 3426 #endif 3427 3427 -
trunk/src/VBox/VMM/VMMR3/PDMBlkCache.cpp
r46493 r49134 42 42 AssertMsg(RTCritSectIsOwner(&Cache->CritSect), \ 43 43 ("Thread does not own critical section\n"));\ 44 } while (0)44 } while (0) 45 45 46 46 # define PDMACFILECACHE_EP_IS_SEMRW_WRITE_OWNER(pEpCache) \ … … 49 49 AssertMsg(RTSemRWIsWriteOwner(pEpCache->SemRWEntries), \ 50 50 ("Thread is not exclusive owner of the per endpoint RW semaphore\n")); \ 51 } while (0)51 } while (0) 52 52 53 53 # define PDMACFILECACHE_EP_IS_SEMRW_READ_OWNER(pEpCache) \ … … 56 56 AssertMsg(RTSemRWIsReadOwner(pEpCache->SemRWEntries), \ 57 57 ("Thread is not read owner of the per endpoint RW semaphore\n")); \ 58 } while (0)58 } while (0) 59 59 60 60 #else 61 # define PDMACFILECACHE_IS_CRITSECT_OWNER(Cache) do { } while (0)62 # define PDMACFILECACHE_EP_IS_SEMRW_WRITE_OWNER(pEpCache) do { } while (0)63 # define PDMACFILECACHE_EP_IS_SEMRW_READ_OWNER(pEpCache) do { } while (0)61 # define PDMACFILECACHE_IS_CRITSECT_OWNER(Cache) do { } while (0) 62 # define PDMACFILECACHE_EP_IS_SEMRW_WRITE_OWNER(pEpCache) do { } while (0) 63 # define PDMACFILECACHE_EP_IS_SEMRW_READ_OWNER(pEpCache) do { } while (0) 64 64 #endif 65 65 -
trunk/src/VBox/VMM/VMMRC/TRPMRCHandlers.cpp
r47826 r49134 67 67 uint32_t const fDbgEFlags1 = CPUMRawGetEFlags(pVCpu); \ 68 68 if (!(fDbgEFlags1 & X86_EFL_IF)) Log(("%s: IF=0 ##\n", __FUNCTION__)); \ 69 else do {} while (0)69 else do {} while (0) 70 70 # define TRPM_EXIT_DBG_HOOK(a_iVector) \ 71 71 do { \
Note:
See TracChangeset
for help on using the changeset viewer.