Changeset 36472 in vbox for trunk/include/iprt
- Timestamp:
- Mar 30, 2011 9:59:55 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70856
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/critsect.h
r33269 r36472 333 333 334 334 /* Lock strict build: Remap the three enter calls to the debug versions. */ 335 #if def RT_LOCK_STRICT335 #if defined(RT_LOCK_STRICT) && !defined(CRITSECT_WITHOUT_REMAPPING) && !defined(RT_WITH_MANGLING) 336 336 # ifdef ___iprt_asm_h 337 337 # define RTCritSectEnter(pCritSect) RTCritSectEnterDebug(pCritSect, (uintptr_t)ASMReturnAddress(), RT_SRC_POS) … … 346 346 347 347 /* Strict lock order: Automatically classify locks by init location. */ 348 #if defined(RT_LOCK_STRICT_ORDER) && defined(IN_RING3) 348 #if defined(RT_LOCK_STRICT_ORDER) && defined(IN_RING3) && !defined(CRITSECT_WITHOUT_REMAPPING) &&!defined(RT_WITH_MANGLING) 349 349 # define RTCritSectInit(pCritSect) \ 350 350 RTCritSectInitEx((pCritSect), 0 /*fFlags*/, \
Note:
See TracChangeset
for help on using the changeset viewer.