Changeset 76557 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jan 1, 2019 2:37:24 AM (6 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmcritsect.h
r76553 r76557 90 90 /* Strict build: Remap the two enter calls to the debug versions. */ 91 91 #ifdef VBOX_STRICT 92 # ifdef ___iprt_asm_h92 # ifdef IPRT_INCLUDED_asm_h 93 93 # define PDMCritSectEnter(pCritSect, rcBusy) PDMCritSectEnterDebug((pCritSect), (rcBusy), (uintptr_t)ASMReturnAddress(), RT_SRC_POS) 94 94 # define PDMCritSectTryEnter(pCritSect) PDMCritSectTryEnterDebug((pCritSect), (uintptr_t)ASMReturnAddress(), RT_SRC_POS) -
trunk/include/VBox/vmm/pdmcritsectrw.h
r76553 r76557 81 81 /* Lock strict build: Remap the three enter calls to the debug versions. */ 82 82 #ifdef VBOX_STRICT 83 # ifdef ___iprt_asm_h83 # ifdef IPRT_INCLUDED_asm_h 84 84 # define PDMCritSectRwEnterExcl(pCritSect, rcBusy) PDMCritSectRwEnterExclDebug(pCritSect, rcBusy, (uintptr_t)ASMReturnAddress(), RT_SRC_POS) 85 85 # define PDMCritSectRwTryEnterExcl(pCritSect) PDMCritSectRwTryEnterExclDebug(pCritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
Note:
See TracChangeset
for help on using the changeset viewer.