Changeset 51852 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jul 3, 2014 3:09:01 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94703
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TMInternal.h
r44528 r51852 373 373 * i.e. since u64VirtualWarpDriveStart. */ 374 374 uint32_t u32VirtualWarpDrivePercentage; 375 376 /** CPU TSCs ticking indicator (one for each VCPU). */ 377 uint32_t volatile cTSCsTicking; 378 379 /** The TSC difference introduced by pausing the VM. */ 380 uint64_t offTSCPause; 381 382 /** The TSC value when the last TSC was paused. */ 383 uint64_t u64LastPausedTSC; 375 384 376 385 /** The offset of the virtual clock relative to it's timesource. … … 631 640 STAMCOUNTER StatTSCSet; 632 641 642 /** TSC starts and stops. */ 643 STAMCOUNTER StatTSCPause; 644 STAMCOUNTER StatTSCResume; 645 633 646 /** @name Reasons for refusing TSC offsetting in TMCpuTickCanUseRealTSC. 634 647 * @{ */ … … 729 742 730 743 int tmCpuTickPause(PVMCPU pVCpu); 744 int tmCpuTickPauseLocked(PVM pVM, PVMCPU pVCpu); 731 745 int tmCpuTickResume(PVM pVM, PVMCPU pVCpu); 746 int tmCpuTickResumeLocked(PVM pVM, PVMCPU pVCpu); 732 747 733 748 int tmVirtualPauseLocked(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.