Changeset 48557 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Sep 19, 2013 5:58:32 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89108
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r47989 r48557 494 494 * Sets a force action flag. 495 495 * 496 * @param pVM VM Handle.496 * @param pVM Pointer to the VM. 497 497 * @param fFlag The flag to set. 498 498 */ … … 509 509 * Sets a force action flag for the given VCPU. 510 510 * 511 * @param pVCpu VMCPU Handle.511 * @param pVCpu Pointer to the VMCPU. 512 512 * @param fFlag The flag to set. 513 513 */ … … 517 517 * Clears a force action flag. 518 518 * 519 * @param pVM VM Handle.519 * @param pVM Pointer to the VM. 520 520 * @param fFlag The flag to clear. 521 521 */ … … 532 532 * Clears a force action flag for the given VCPU. 533 533 * 534 * @param pVCpu VMCPU Handle.534 * @param pVCpu Pointer to the VMCPU. 535 535 * @param fFlag The flag to clear. 536 536 */ … … 540 540 * Checks if a force action flag is set. 541 541 * 542 * @param pVM VM Handle.542 * @param pVM Pointer to the VM. 543 543 * @param fFlag The flag to check. 544 544 */ … … 548 548 * Checks if a force action flag is set for the given VCPU. 549 549 * 550 * @param pVCpu VMCPU Handle.550 * @param pVCpu Pointer to the VMCPU. 551 551 * @param fFlag The flag to check. 552 552 */ … … 556 556 * Checks if one or more force action in the specified set is pending. 557 557 * 558 * @param pVM VM Handle.558 * @param pVM Pointer to the VM. 559 559 * @param fFlags The flags to check for. 560 560 */ … … 566 566 * @returns true if the bit was set. 567 567 * @returns false if the bit was clear. 568 * @param pVM VM Handle.568 * @param pVM Pointer to the VM. 569 569 * @param iBit Bit position to check and clear 570 570 */ … … 576 576 * @returns true if the bit was set. 577 577 * @returns false if the bit was clear. 578 * @param pVCpu VMCPU Handle.578 * @param pVCpu Pointer to the VMCPU. 579 579 * @param iBit Bit position to check and clear 580 580 */ … … 584 584 * Checks if one or more force action in the specified set is pending for the given VCPU. 585 585 * 586 * @param pVCpu VMCPU Handle.586 * @param pVCpu Pointer to the VMCPU. 587 587 * @param fFlags The flags to check for. 588 588 */ … … 593 593 * or more other ones are not. 594 594 * 595 * @param pVM VM Handle.595 * @param pVM Pointer to the VM. 596 596 * @param fFlags The flags to check for. 597 597 * @param fExcpt The flags that should not be set. … … 603 603 * VCPU while one or more other ones are not. 604 604 * 605 * @param pVCpu VMCPU Handle.605 * @param pVCpu Pointer to the VMCPU. 606 606 * @param fFlags The flags to check for. 607 607 * @param fExcpt The flags that should not be set.
Note:
See TracChangeset
for help on using the changeset viewer.