Changeset 22890 in vbox for trunk/include
- Timestamp:
- Sep 9, 2009 11:11:31 PM (15 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/gvm.h
r21217 r22890 42 42 typedef struct GVMCPU 43 43 { 44 /** VCPU id (0 - (pVM->cC PUs - 1). */44 /** VCPU id (0 - (pVM->cCpus - 1). */ 45 45 VMCPUID idCpu; 46 46 … … 84 84 PVM pVM; 85 85 /** Number of Virtual CPUs, i.e. how many entries there are in aCpus. 86 * Same same as PVM::cCPUs. */86 * Same same as VM::cCpus. */ 87 87 uint32_t cCpus; 88 88 uint32_t padding; -
trunk/include/VBox/vm.h
r22889 r22890 698 698 uint32_t hSelf; 699 699 /** Number of virtual CPUs. */ 700 uint32_t cC PUs;700 uint32_t cCpus; 701 701 702 702 /** Size of the VM structure including the VMCPU array. */ -
trunk/include/VBox/vm.mac
r22888 r22890 56 56 .pVMRC RTRCPTR_RES 1 57 57 .hSelf resd 1 58 .cC PUs resd 158 .cCpus resd 1 59 59 .cbSelf resd 1 60 60 .offVMCPU resd 1 -
trunk/include/VBox/vmapi.h
r22784 r22890 349 349 350 350 351 VMMR3DECL(int) VMR3Create(uint32_t cC PUs, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM);351 VMMR3DECL(int) VMR3Create(uint32_t cCpus, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM); 352 352 VMMR3DECL(int) VMR3PowerOn(PVM pVM); 353 353 VMMR3DECL(int) VMR3Suspend(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.