Changeset 18757 in vbox for trunk/src/VBox
- Timestamp:
- Apr 6, 2009 1:58:57 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r18752 r18757 182 182 * @returns VBox error code on failure. 183 183 * @param cCPUs Number of virtual CPUs for the new VM. 184 * @param pfnVMAtError Pointer to callback function for setting VM errors. 185 * This is called in the EM. 184 * @param pfnVMAtError Pointer to callback function for setting VM 185 * errors. This was added as an implicit call to 186 * VMR3AtErrorRegister() since there is no way the 187 * caller can get to the VM handle early enough to 188 * do this on its now. 189 * This is called in the context of an EMT. 186 190 * @param pvUserVM The user argument passed to pfnVMAtError. 187 191 * @param pfnCFGMConstructor Pointer to callback function for constructing the VM configuration tree. 188 * This is called in the EM.192 * This is called in the context of an EMT0. 189 193 * @param pvUserCFGM The user argument passed to pfnCFGMConstructor. 190 194 * @param ppVM Where to store the 'handle' of the created VM. 195 * 191 196 */ 192 197 VMMR3DECL(int) VMR3Create(uint32_t cCPUs, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM)
Note:
See TracChangeset
for help on using the changeset viewer.