Changeset 79786 in vbox for trunk/src/VBox
- Timestamp:
- Jul 15, 2019 11:08:36 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp
r76553 r79786 3373 3373 || pRecU->Excl.hClass->cMsMinDeadlock > RT_INDEFINITE_WAIT)) 3374 3374 rc = VINF_SUCCESS; 3375 else if (!rtLockValidatorIsSimpleNoDeadlockCase(pRecU)) 3376 rc = rtLockValidatorDeadlockDetection(pRecU, pThreadSelf, pSrcPos); 3375 else 3376 { 3377 rtLockValidatorSerializeDetectionEnter(); 3378 if (!rtLockValidatorIsSimpleNoDeadlockCase(pRecU)) 3379 rc = rtLockValidatorDeadlockDetection(pRecU, pThreadSelf, pSrcPos); 3380 rtLockValidatorSerializeDetectionLeave(); 3381 } 3377 3382 3378 3383 if (RT_SUCCESS(rc)) … … 3675 3680 || pRec->hClass->cMsMinDeadlock > cMillies)) 3676 3681 rc = VINF_SUCCESS; 3677 else if (!rtLockValidatorIsSimpleNoDeadlockCase(pRecU)) 3678 rc = rtLockValidatorDeadlockDetection(pRecU, pThreadSelf, pSrcPos); 3682 else 3683 { 3684 rtLockValidatorSerializeDetectionEnter(); 3685 if (!rtLockValidatorIsSimpleNoDeadlockCase(pRecU)) 3686 rc = rtLockValidatorDeadlockDetection(pRecU, pThreadSelf, pSrcPos); 3687 rtLockValidatorSerializeDetectionLeave(); 3688 } 3679 3689 3680 3690 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.