Changeset 19252 in vbox for trunk/include/VBox
- Timestamp:
- Apr 29, 2009 9:56:19 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46655
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r18191 r19252 447 447 * @returns error code specific to uFunction. 448 448 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure. 449 * @param idCpu VMCPU id. 449 450 * @param uOperation Operation to execute. 450 451 * @param pvArg Argument. 451 452 */ 452 SUPR3DECL(int) SUPCallVMMR0(PVMR0 pVMR0, unsigned uOperation, void *pvArg);453 SUPR3DECL(int) SUPCallVMMR0(PVMR0 pVMR0, unsigned idCpu, unsigned uOperation, void *pvArg); 453 454 454 455 /** … … 459 460 * @param pVMR0 The ring-0 VM handle. 460 461 * @param uOperation The operation; only the SUP_VMMR0_DO_* ones are valid. 461 * @param idC PUVMCPU id.462 */ 463 SUPR3DECL(int) SUPCallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation, unsigned idC PU);462 * @param idCpu VMCPU id. 463 */ 464 SUPR3DECL(int) SUPCallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation, unsigned idCpu); 464 465 465 466 /** … … 472 473 * @returns error code specific to uFunction. 473 474 * @param pVMR0 Pointer to the Ring-0 (Host Context) mapping of the VM structure. 475 * @param idCpu VMCPU id. 474 476 * @param uOperation Operation to execute. 475 477 * @param u64Arg Constant argument. … … 478 480 * limit on this, just below 4KB. 479 481 */ 480 SUPR3DECL(int) SUPCallVMMR0Ex(PVMR0 pVMR0, unsigned uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);482 SUPR3DECL(int) SUPCallVMMR0Ex(PVMR0 pVMR0, unsigned idCpu, unsigned uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr); 481 483 482 484 /**
Note:
See TracChangeset
for help on using the changeset viewer.