Changeset 41778 in vbox for trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
- Timestamp:
- Jun 16, 2012 6:52:24 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r40424 r41778 228 228 * 229 229 * @returns VBox status code. 230 * @param pVM VM handle.231 * @param pVCpu VMCPU handle.232 * @param pCtx CPU context230 * @param pVM Pointer to the VM. 231 * @param pVCpu Pointer to the VMCPU. 232 * @param pCtx Pointer to the guest CPU context. 233 233 */ 234 234 VMMR0DECL(int) CPUMR0LoadGuestFPU(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) … … 391 391 * 392 392 * @returns VBox status code. 393 * @param pVM VM handle.394 * @param pVCpu VMCPU handle.395 * @param pCtx CPU context393 * @param pVM Poitner to the VM. 394 * @param pVCpu Pointer to the VMCPU. 395 * @param pCtx Pointer to the guest CPU context. 396 396 */ 397 397 VMMR0DECL(int) CPUMR0SaveGuestFPU(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) … … 476 476 * 477 477 * @returns VBox status code. 478 * @param pVM VM handle.479 * @param pVCpu VMCPU handle.480 * @param pCtx CPU context481 * @param fDR6 Include DR6 or not478 * @param pVM Pointer to the VM. 479 * @param pVCpu Pointer to the VMCPU. 480 * @param pCtx Pointer to the guest CPU context. 481 * @param fDR6 Whether to include DR6 or not. 482 482 */ 483 483 VMMR0DECL(int) CPUMR0SaveGuestDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, bool fDR6) … … 527 527 * 528 528 * @returns VBox status code. 529 * @param pVM VM handle.530 * @param pVCpu VMCPU handle.531 * @param pCtx CPU context532 * @param fDR6 Include DR6 or not529 * @param pVM Pointer to the VM. 530 * @param pVCpu Pointer to the VMCPU. 531 * @param pCtx Pointer to the guest CPU context. 532 * @param fDR6 Whether to include DR6 or not. 533 533 */ 534 534 VMMR0DECL(int) CPUMR0LoadGuestDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, bool fDR6) … … 568 568 * 569 569 * @returns VBox status code. 570 * @param pVM VM handle.571 * @param pVCpu VMCPU handle.570 * @param pVM Pointer to the VM. 571 * @param pVCpu Pointer to the VMCPU. 572 572 */ 573 573 VMMR0DECL(int) CPUMR0SaveHostDebugState(PVM pVM, PVMCPU pVCpu) … … 598 598 * 599 599 * @returns VBox status code. 600 * @param pVM VM handle.601 * @param pVCpu VMCPU handle.600 * @param pVM Pointer to the VM. 601 * @param pVCpu Pointer to the VMCPU. 602 602 */ 603 603 VMMR0DECL(int) CPUMR0LoadHostDebugState(PVM pVM, PVMCPU pVCpu) … … 631 631 * 632 632 * @returns VBox status code. 633 * @param pVM VM handle.634 * @param pVCpu VMCPU handle.635 * @param pCtx CPU context636 * @param fDR6 Include DR6 or not633 * @param pVM Pointer to the VM. 634 * @param pVCpu Pointer to the VMCPU. 635 * @param pCtx Pointer to the guest CPU context. 636 * @param fDR6 Whether to include DR6 or not. 637 637 */ 638 638 VMMR0DECL(int) CPUMR0LoadHyperDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, bool fDR6) … … 820 820 * interrupts! 821 821 * 822 * @param pVM VM handle.822 * @param pVM Pointer to the VM. 823 823 * @param idHostCpu The ID of the current host CPU. 824 824 */
Note:
See TracChangeset
for help on using the changeset viewer.