Changeset 45310 in vbox
- Timestamp:
- Apr 3, 2013 2:54:09 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSectRw.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSectRw.cpp
r45306 r45310 548 548 549 549 if ( c > 0 550 || (u64State & RTCSRW_CNT_ RD_MASK) == 0)550 || (u64State & RTCSRW_CNT_WR_MASK) == 0) 551 551 { 552 552 /* Don't change the direction. */ … … 573 573 PVMCPU pVCpu = VMMGetCpu(pVM); AssertPtr(pVCpu); 574 574 uint32_t i = pVCpu->pdm.s.cQueuedCritSectRwShrdLeaves++; 575 LogFlow(("PDMCritSectRwLeaveShared: [%d]=%p => R3 \n", i, pThis));575 LogFlow(("PDMCritSectRwLeaveShared: [%d]=%p => R3 c=%d (%#llx)\n", i, pThis, c, u64State)); 576 576 AssertFatal(i < RT_ELEMENTS(pVCpu->pdm.s.apQueuedCritSectRwShrdLeaves)); 577 577 pVCpu->pdm.s.apQueuedCritSectRwShrdLeaves[i] = MMHyperCCToR3(pVM, pThis); … … 580 580 STAM_REL_COUNTER_INC(&pVM->pdm.s.StatQueuedCritSectLeaves); 581 581 STAM_REL_COUNTER_INC(&pThis->s.StatContentionRZLeaveShared); 582 break; 582 583 #endif 583 584 }
Note:
See TracChangeset
for help on using the changeset viewer.

