Changeset 62326 in vbox
- Timestamp:
- Jul 19, 2016 2:44:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 108862
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r62147 r62326 682 682 ASMAtomicWriteHandle(&pCritSect->s.Core.NativeThreadOwner, hNativeThread); 683 683 STAM_PROFILE_ADV_START(&pCritSect->s.StatLocked, l); 684 Assert(pCritSect->s.Core.cNestings == 0);685 684 # ifdef PDMCRITSECT_WITH_LESS_ATOMIC_STUFF 686 685 //pCritSect->s.Core.cNestings = 1; 687 # else 686 Assert(pCritSect->s.Core.cNestings == 1); 687 # else 688 //Assert(pCritSect->s.Core.cNestings == 0); 688 689 ASMAtomicWriteS32(&pCritSect->s.Core.cNestings, 1); 689 690 # endif
Note:
See TracChangeset
for help on using the changeset viewer.