Changeset 13858 in vbox for trunk/include/VBox
- Timestamp:
- Nov 5, 2008 1:45:41 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/em.h
r13832 r13858 172 172 VMMR3DECL(int) EMR3TermCPU(PVM pVM); 173 173 VMMR3DECL(DECLNORETURN(void)) EMR3FatalError(PVM pVM, int rc); 174 VMMR3DECL(int) EMR3ExecuteVM(PVM pVM );174 VMMR3DECL(int) EMR3ExecuteVM(PVM pVM, RTCPUID idCpu); 175 175 VMMR3DECL(int) EMR3CheckRawForcedActions(PVM pVM); 176 176 VMMR3DECL(int) EMR3Interpret(PVM pVM); -
trunk/include/VBox/sup.h
r13458 r13858 441 441 * @param pVMR0 The ring-0 VM handle. 442 442 * @param uOperation The operation; only the SUP_VMMR0_DO_* ones are valid. 443 */ 444 SUPR3DECL(int) SUPCallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation); 443 * @param idCPU VMCPU id. 444 */ 445 SUPR3DECL(int) SUPCallVMMR0Fast(PVMR0 pVMR0, unsigned uOperation, unsigned idCPU); 445 446 446 447 /** -
trunk/include/VBox/uvm.h
r13796 r13858 44 44 PUVM pUVM; 45 45 /** The virtual CPU ID. */ 46 RTCPUID idC PU;46 RTCPUID idCpu; 47 47 48 48 /** The VM internal data. */ -
trunk/include/VBox/vmm.h
r13832 r13858 135 135 VMMR3DECL(int) VMMR3DisableSwitcher(PVM pVM); 136 136 VMMR3DECL(int) VMMR3RawRunGC(PVM pVM); 137 VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM );137 VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM, RTCPUID idCpu); 138 138 VMMR3DECL(int) VMMR3CallRC(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, ...); 139 139 VMMR3DECL(int) VMMR3CallRCV(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, va_list args); … … 277 277 278 278 VMMR0DECL(int) VMMR0EntryInt(PVM pVM, VMMR0OPERATION enmOperation, void *pvArg); 279 VMMR0DECL(void) VMMR0EntryFast(PVM pVM, VMMR0OPERATION enmOperation);279 VMMR0DECL(void) VMMR0EntryFast(PVM pVM, unsigned idCPU, VMMR0OPERATION enmOperation); 280 280 VMMR0DECL(int) VMMR0EntryEx(PVM pVM, VMMR0OPERATION enmOperation, PSUPVMMR0REQHDR pReq, uint64_t u64Arg, PSUPDRVSESSION); 281 281 VMMR0DECL(int) VMMR0CallHost(PVM pVM, VMMCALLHOST enmOperation, uint64_t uArg);
Note:
See TracChangeset
for help on using the changeset viewer.