Changeset 41801 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jun 17, 2012 4:46:51 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r41779 r41801 115 115 * 116 116 * @returns VBox status code. 117 * @param pVM The VM to operate on.117 * @param pVM Pointer to the VM. 118 118 */ 119 119 VMMR0DECL(int) CPUMR0Init(PVM pVM) -
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r41783 r41801 1059 1059 * 1060 1060 * @returns VBox status code. 1061 * @param pVM Where to store the pointer to the VM structure.1061 * @param pVM Pointer to the VM. 1062 1062 * 1063 1063 * @thread EMT(0) if it's associated with the VM, otherwise any thread. … … 1314 1314 * 1315 1315 * @returns VBox status code 1316 * @param pVM The shared VM structure (the ring-0 mapping).1316 * @param pVM Pointer to the VM. 1317 1317 * @param idCpu VCPU id. 1318 1318 */ … … 1379 1379 * 1380 1380 * @returns VBox status code. 1381 * @param pVM The shared VM structure (the ring-0 mapping).1381 * @param pVM Pointer to the VM. 1382 1382 * @param ppGVM Where to store the GVM pointer. 1383 1383 * @param ppGVMM Where to store the pointer to the GVMM instance data. … … 1456 1456 * 1457 1457 * @returns VBox status code. 1458 * @param pVM The shared VM structure (the ring-0 mapping).1458 * @param pVM Pointer to the VM. 1459 1459 * @param ppGVM Where to store the GVM pointer. 1460 1460 * … … 1474 1474 * 1475 1475 * @returns VBox status code. 1476 * @param pVM The shared VM structure (the ring-0 mapping).1476 * @param pVM Pointer to the VM. 1477 1477 * @param idCpu The Virtual CPU ID of the calling EMT. 1478 1478 * @param ppGVM Where to store the GVM pointer. … … 1524 1524 * 1525 1525 * @returns VBox status code. 1526 * @param pVM The shared VM structure (the ring-0 mapping).1526 * @param pVM Pointer to the VM. 1527 1527 * @param idCpu The Virtual CPU ID of the calling EMT. 1528 1528 * @param ppGVM Where to store the GVM pointer. -
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r41774 r41801 516 516 * @returns VBox status code. 517 517 * @param pVM Pointer to the VM. 518 * @param pVCpu The VM CPU to operate on.518 * @param pVCpu Pointer to the VMCPU. 519 519 * @param pVMCB Pointer to the VMCB. 520 520 * @param pCtx Pointer to the guest CPU Context. … … 683 683 * @returns VBox status code. 684 684 * @param pVM Pointer to the VM. 685 * @param pVCpu The VM CPU to operate on.685 * @param pVCpu Pointer to the VMCPU. 686 686 */ 687 687 VMMR0DECL(int) SVMR0SaveHostState(PVM pVM, PVMCPU pVCpu) … … 701 701 * @returns VBox status code. 702 702 * @param pVM Pointer to the VM. 703 * @param pVCpu The VM CPU to operate on.703 * @param pVCpu Pointer to the VMCPU. 704 704 * @param pCtx Pointer to the guest CPU context. 705 705 */ … … 1012 1012 * 1013 1013 * @param pVM Pointer to the VM. 1014 * @param pVCpu The VM CPU to operate on.1014 * @param pVCpu Pointer to the VMCPU. 1015 1015 */ 1016 1016 static void hmR0SvmSetupTLB(PVM pVM, PVMCPU pVCpu) … … 1156 1156 * @returns VBox status code. 1157 1157 * @param pVM Pointer to the VM. 1158 * @param pVCpu The VM CPU to operate on.1158 * @param pVCpu Pointer to the VMCPU. 1159 1159 * @param pCtx Pointer to the guest CPU context. 1160 1160 */ … … 2786 2786 * @returns VBox status code. 2787 2787 * @param pVM Pointer to the VM. 2788 * @param pVCpu The VM CPU to operate on.2788 * @param pVCpu Pointer to the VMCPU. 2789 2789 * @param pCtx Pointer to the guest CPU context. 2790 2790 */ … … 2851 2851 * @returns VBox status code. 2852 2852 * @param pVM Pointer to the VM. 2853 * @param pVCpu The VM CPU to operate on.2853 * @param pVCpu Pointer to the VMCPU. 2854 2854 * @param pCpu Pointer to the CPU info struct. 2855 2855 */ … … 2873 2873 * @returns VBox status code. 2874 2874 * @param pVM Pointer to the VM. 2875 * @param pVCpu The VM CPU to operate on.2875 * @param pVCpu Pointer to the VMCPU. 2876 2876 * @param pCtx Pointer to the guest CPU context. 2877 2877 */ … … 3005 3005 * @returns VBox status code. 3006 3006 * @param pVM Pointer to the VM. 3007 * @param pVCpu The VM CPU to operate on.3007 * @param pVCpu Pointer to the VMCPU. 3008 3008 * @param GCVirt Guest virtual address of the page to invalidate. 3009 3009 */ … … 3042 3042 * @returns VBox status code. 3043 3043 * @param pVM Pointer to the VM. 3044 * @param pVCpu The VM CPU to operate on.3044 * @param pVCpu Pointer to the VMCPU. 3045 3045 * @param GCPhys Guest physical address of the page to invalidate. 3046 3046 */ -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r41741 r41801 4958 4958 * @returns VBox status code. 4959 4959 * @param pVM Pointer to the VM. 4960 * @param pVCpu The VM CPU to operate on.4960 * @param pVCpu Pointer to the VMCPU. 4961 4961 * @param GCPhys Guest physical address of the page to invalidate. 4962 4962 */ -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r41783 r41801 599 599 * 600 600 * @returns VBox status code. 601 * @param pVM The VM to operate on.601 * @param pVM Pointer to the VM. 602 602 * @param enmOperation Which operation to execute. 603 603 * @param pvArg Argument to the operation. … … 619 619 * The Ring 0 entry point, called by the fast-ioctl path. 620 620 * 621 * @param pVM The VM to operate on.621 * @param pVM Pointer to the VM. 622 622 * The return code is stored in pVM->vmm.s.iLastGZRc. 623 623 * @param idCpu The Virtual CPU ID of the calling EMT. … … 803 803 * 804 804 * @returns true / false accordingly. 805 * @param pVM The VM argument.805 * @param pVM Pointer to the VM. 806 806 * @param pSession The session argument. 807 807 */ … … 826 826 * 827 827 * @returns VBox status code. 828 * @param pVM The VM to operate on.828 * @param pVM Pointer to the VM. 829 829 * @param idCpu Virtual CPU ID argument. Must be NIL_VMCPUID if pVM 830 830 * is NIL_RTR0PTR, and may be NIL_VMCPUID if it isn't … … 1307 1307 * 1308 1308 * @returns VBox status code. 1309 * @param pVM The VM to operate on.1309 * @param pVM Pointer to the VM. 1310 1310 * @param idCpu Virtual CPU ID argument. Must be NIL_VMCPUID if pVM 1311 1311 * is NIL_RTR0PTR, and may be NIL_VMCPUID if it isn't 1312 1312 * @param enmOperation Which operation to execute. 1313 * @param pReq This points to aSUPVMMR0REQHDR packet. Optional.1313 * @param pReq Pointer to the SUPVMMR0REQHDR packet. Optional. 1314 1314 * @param u64Arg Some simple constant argument. 1315 1315 * @param pSession The session of the caller. … … 1462 1462 * Disables flushing of the ring-0 debug log. 1463 1463 * 1464 * @param pVCpu The shared virtual cpu structure.1464 * @param pVCpu Pointer to the VMCPU. 1465 1465 */ 1466 1466 VMMR0DECL(void) VMMR0LogFlushDisable(PVMCPU pVCpu) … … 1474 1474 * Enables flushing of the ring-0 debug log. 1475 1475 * 1476 * @param pVCpu The shared virtual cpu structure.1476 * @param pVCpu Pointer to the VMCPU. 1477 1477 */ 1478 1478 VMMR0DECL(void) VMMR0LogFlushEnable(PVMCPU pVCpu)
Note:
See TracChangeset
for help on using the changeset viewer.