Changeset 2554 in vbox for trunk/src/VBox
- Timestamp:
- May 9, 2007 12:46:25 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r2505 r2554 1648 1648 * RDTSC Emulation. 1649 1649 */ 1650 static int emInterpretRdtsc(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1650 1651 /** 1652 * Interpret RDTSC 1653 * 1654 * @returns VBox status code. 1655 * @param pVM The VM handle. 1656 * @param pRegFrame The register frame. 1657 * 1658 */ 1659 EMDECL(int) EMInterpretRdtsc(PVM pVM, PCPUMCTXCORE pRegFrame) 1651 1660 { 1652 1661 unsigned uCR4 = CPUMGetGuestCR4(pVM); … … 1661 1670 1662 1671 return VINF_SUCCESS; 1672 } 1673 1674 static int emInterpretRdtsc(PVM pVM, PDISCPUSTATE pCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, uint32_t *pcbSize) 1675 { 1676 return EMInterpretRdtsc(pVM, pRegFrame); 1663 1677 } 1664 1678
Note:
See TracChangeset
for help on using the changeset viewer.