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