Changeset 41803 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 17, 2012 5:20:33 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78621
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r41802 r41803 1061 1061 * Used by CPUMR3Reset and CPU hot plugging. 1062 1062 * 1063 * @param pVCpu The virtual CPU handle.1063 * @param pVCpu Pointer to the VMCPU. 1064 1064 */ 1065 1065 VMMR3DECL(void) CPUMR3ResetCpu(PVMCPU pVCpu) … … 3605 3605 * 3606 3606 * @returns VBox status code. 3607 * @param pVM Pointer to the VM 3608 * @param pVCpu VMCPU Handle3609 * @param pCtx CPU context3607 * @param pVM Pointer to the VM. 3608 * @param pVCpu Pointer to the VMCPU. 3609 * @param pCtx Pointer to the guest CPU context. 3610 3610 * @param GCPtrPC Program counter (relative to CS) to disassemble from. 3611 * @param pCpu Disassembly state 3612 * @param pszPrefix String prefix for logging (debug only) 3611 * @param pCpu Disassembly state. 3612 * @param pszPrefix String prefix for logging (debug only). 3613 3613 * 3614 3614 */ … … 4000 4000 * Leaves REM and works the CPUM_CHANGED_HIDDEN_SEL_REGS_INVALID flag. 4001 4001 * 4002 * @param pVCpu The virtual CPU handle.4002 * @param pVCpu Pointer to the VMCPU. 4003 4003 * @param fNoOutOfSyncSels This is @c false if there are out of sync 4004 4004 * registers. -
trunk/src/VBox/VMM/VMMR3/CPUMDbg.cpp
r41801 r41803 171 171 * 172 172 * @returns true if it is, false if it's in FNSAVE. 173 * @param pVCpu The virtual CPU handle.173 * @param pVCpu Pointer to the VMCPU. 174 174 */ 175 175 DECLINLINE(bool) cpumR3RegIsFxSaveFormat(PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMR3/DBGFAddr.cpp
r41783 r41803 215 215 * 216 216 * @returns VBox status code. 217 * @param pVCpu The virtual CPU handle.217 * @param pVCpu Pointer to the VMCPU. 218 218 * @param pAddress The address. 219 219 * @param pGCPhys Where to return the physical address. -
trunk/src/VBox/VMM/VMMR3/DBGFDisas.cpp
r41802 r41803 90 90 * 91 91 * @returns VBox status code. 92 * @param pVM Pointer to the VM 93 * @param pVCpu VMCPU handle92 * @param pVM Pointer to the VM. 93 * @param pVCpu Pointer to the VMCPU. 94 94 * @param pSelInfo The selector info. 95 95 * @param enmMode The guest paging mode. … … 323 323 * @returns VBox status code. 324 324 * @param pVM Pointer to the VM. 325 * @param pVCpu The virtual CPU handle.325 * @param pVCpu Pointer to the VMCPU. 326 326 * @param Sel The code selector. This used to determine the 32/16 bit ness and 327 327 * calculation of the actual instruction address. … … 653 653 * @returns VBox status code. 654 654 * @param pVM Pointer to the VM. 655 * @param pVCpu The virtual CPU handle, defaults to CPU 0 if NULL.655 * @param pVCpu Pointer to the VMCPU, defaults to CPU 0 if NULL. 656 656 * @param Sel The code selector. This used to determine the 32/16 bit-ness and 657 657 * calculation of the actual instruction address. -
trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp
r41783 r41803 498 498 * @returns VBox status code. 499 499 * @param pVM Pointer to the VM. 500 * @param pVCpu The virtual CPU handle.500 * @param pVCpu Pointer to the VMCPU. 501 501 * @param paRegisters The register descriptors. 502 502 * @param fGuestRegs Set if it's the guest registers, clear if -
trunk/src/VBox/VMM/VMMR3/PDM.cpp
r41801 r41803 1403 1403 * Used by PDMR3Reset and CPU hot plugging. 1404 1404 * 1405 * @param pVCpu The virtual CPU handle.1405 * @param pVCpu Pointer to the VMCPU. 1406 1406 */ 1407 1407 VMMR3DECL(void) PDMR3ResetCpu(PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r41801 r41803 2469 2469 * 2470 2470 * @param pVM Pointer to the VM. 2471 * @param pVCpu The virtual CPU handle.2471 * @param pVCpu Pointer to the VMCPU. 2472 2472 */ 2473 2473 VMMR3DECL(void) PGMR3ResetUnpluggedCpu(PVM pVM, PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
r41800 r41803 197 197 * @returns VBox strict status code. 198 198 * @param pVM Pointer to the VM. 199 * @param pVCpu The VMCPU handle forthe calling EMT.199 * @param pVCpu Pointer to the VMCPU of the calling EMT. 200 200 * @param pvUser Pointer to a VMCPUID with the requester's ID. 201 201 */ -
trunk/src/VBox/VMM/VMMR3/SELM.cpp
r41802 r41803 2300 2300 * 2301 2301 * @param pVM Pointer to the VM. 2302 * @param pVCpu The virtual CPU handle.2302 * @param pVCpu Pointer to the VMCPU. 2303 2303 * @param Sel The selector to get info about. 2304 2304 * @param pSelInfo Where to store the information. -
trunk/src/VBox/VMM/VMMR3/TM.cpp
r41801 r41803 2610 2610 * @returns VBox status code, all errors are asserted. 2611 2611 * @param pVM Pointer to the VM. 2612 * @param pVCpu The virtual CPU handle.2613 * @thread EMT corresponding to the virtual CPU handle.2612 * @param pVCpu Pointer to the VMCPU. 2613 * @thread EMT corresponding to Pointer to the VMCPU. 2614 2614 */ 2615 2615 VMMR3DECL(int) TMR3NotifySuspend(PVM pVM, PVMCPU pVCpu) … … 2653 2653 * @returns VBox status code, all errors are asserted. 2654 2654 * @param pVM Pointer to the VM. 2655 * @param pVCpu The virtual CPU handle.2656 * @thread EMT corresponding to the virtual CPU handle.2655 * @param pVCpu Pointer to the VMCPU. 2656 * @thread EMT corresponding to Pointer to the VMCPU. 2657 2657 */ 2658 2658 VMMR3DECL(int) TMR3NotifyResume(PVM pVM, PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMR3/TRPM.cpp
r41802 r41803 730 730 * Used by TRPMR3Reset and CPU hot plugging. 731 731 * 732 * @param pVCpu The virtual CPU handle.732 * @param pVCpu Pointer to the VMCPU. 733 733 */ 734 734 VMMR3DECL(void) TRPMR3ResetCpu(PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r41802 r41803 1211 1211 * 1212 1212 * @param pVM Pointer to the VM. 1213 * @param pVCpu The VMCPU handleof the EMT.1213 * @param pVCpu Pointer to the VMCPU of the EMT. 1214 1214 * @param pvUser Ignored. 1215 1215 */ … … 1300 1300 * 1301 1301 * @param pVM Pointer to the VM. 1302 * @param pVCpu The VMCPU handleof the EMT.1302 * @param pVCpu Pointer to the VMCPU of the EMT. 1303 1303 * @param pvUser Ignored. 1304 1304 */ … … 1382 1382 * 1383 1383 * @param pVM Pointer to the VM. 1384 * @param pVCpu The VMCPU handleof the EMT.1384 * @param pVCpu Pointer to the VMCPU of the EMT. 1385 1385 * @param pvUser Ignored. 1386 1386 */ … … 1464 1464 * 1465 1465 * @param pVM Pointer to the VM. 1466 * @param pVCpu The VMCPU handleof the EMT.1466 * @param pVCpu Pointer to the VMCPU of the EMT. 1467 1467 * @param pvUser The pfSuspended argument of vmR3SaveTeleport. 1468 1468 */ … … 1564 1564 * 1565 1565 * @param pVM Pointer to the VM. 1566 * @param pVCpu The VMCPU handleof the EMT.1566 * @param pVCpu Pointer to the VMCPU of the EMT. 1567 1567 * @param pvUser The pfSuspended argument of vmR3SaveTeleport. 1568 1568 */ … … 2156 2156 * 2157 2157 * @param pVM Pointer to the VM. 2158 * @param pVCpu The VMCPU handleof the EMT.2158 * @param pVCpu Pointer to the VMCPU of the EMT. 2159 2159 * @param pvUser Ignored. 2160 2160 */ … … 2786 2786 * 2787 2787 * @param pVM Pointer to the VM. 2788 * @param pVCpu The VMCPU handleof the EMT.2788 * @param pVCpu Pointer to the VMCPU of the EMT. 2789 2789 * @param pvUser Ignored. 2790 2790 */ … … 4089 4089 * 4090 4090 * @param pVM Pointer to the VM. 4091 * @param pVCpu The VMCPU handleof the EMT.4091 * @param pVCpu Pointer to the VMCPU of the EMT. 4092 4092 * @param pvUser Ignored. 4093 4093 */ -
trunk/src/VBox/VMM/VMMR3/VMEmt.cpp
r41802 r41803 1190 1190 * @returns VBox strict status code. 1191 1191 * @param pVM Pointer to the VM. 1192 * @param pVCpu The VMCPU handle forthe calling EMT.1192 * @param pVCpu Pointer to the VMCPU of the calling EMT. 1193 1193 * @param pvUser The new g_aHaltMethods index. 1194 1194 */ -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r41802 r41803 2043 2043 * @returns VBox status code. 2044 2044 * @param pVM Pointer to the VM. 2045 * @param pVCpu VMCPU handle2045 * @param pVCpu Pointer to the VMCPU. 2046 2046 * @remark Careful with critsects. 2047 2047 */
Note:
See TracChangeset
for help on using the changeset viewer.