Changeset 54839 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Mar 18, 2015 5:58:28 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99041
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/GIMKvmInternal.h
r54819 r54839 175 175 typedef struct GIMKVM 176 176 { 177 /** @name MSRs & related data. */177 /** @name MSRs. */ 178 178 /** Wall-clock MSR. */ 179 179 uint64_t u64WallClockMsr; 180 /** Guest-physical address of the wall-clock struct. */181 RTGCPHYS GCPhysWallClock;182 /** The version (sequence number) of the wall-clock struct. */183 uint32_t u32WallClockVersion;184 180 /** @} */ 185 181 … … 206 202 /** The version (sequence number) of the system-time struct. */ 207 203 uint32_t u32SystemTimeVersion; 204 /** The guest TSC value while enabling the system-time MSR. */ 205 uint64_t uTsc; 206 /** The guest virtual time while enabling the system-time MSR. */ 207 uint64_t uVirtNanoTS; 208 208 } GIMKVMCPU; 209 209 /** Pointer to per-VCPU GIM KVM instance data. */ … … 233 233 234 234 VMMR3_INT_DECL(int) gimR3KvmDisableSystemTime(PVM pVM); 235 VMMR3_INT_DECL(int) gimR3KvmEnableSystemTime(PVM pVM, PVMCPU pVCpu, RTGCPHYS GCPhysSysTime, uint32_t uVersion, uint8_t fFlags);235 VMMR3_INT_DECL(int) gimR3KvmEnableSystemTime(PVM pVM, PVMCPU pVCpu, PGIMKVMCPU pKvmCpu, uint8_t fFlags); 236 236 VMMR3_INT_DECL(int) gimR3KvmEnableWallClock(PVM pVM, RTGCPHYS GCPhysSysTime, uint32_t uVersion); 237 237 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.