Changeset 33540 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Devices/VMMDev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r33303 r33540 2550 2550 SSMR3PutU32(pSSM, pThis->u32GuestFilterMask); 2551 2551 SSMR3PutU32(pSSM, pThis->u32HostEventFlags); 2552 /* The following is not strictly necessary as PGM restor s MMIO2, keeping it for historical reasons. */2552 /* The following is not strictly necessary as PGM restores MMIO2, keeping it for historical reasons. */ 2553 2553 SSMR3PutMem(pSSM, &pThis->pVMMDevRAMR3->V, sizeof(pThis->pVMMDevRAMR3->V)); 2554 2554 -
trunk/src/VBox/Devices/VMMDev/VMMDevHGCM.cpp
r29743 r33540 2199 2199 /** @todo no longer necessary to forward to EMT, but it might be more 2200 2200 * efficient...? */ 2201 /* Not safe to execute asynchron eously; forward to EMT */2201 /* Not safe to execute asynchronously; forward to EMT */ 2202 2202 int rc = VMR3ReqCallVoidNoWait(PDMDevHlpGetVM(pVMMDevState->pDevIns), VMCPUID_ANY, 2203 2203 (PFNRT)hgcmCompletedWorker, 3, pInterface, result, pCmd); … … 2391 2391 } 2392 2392 2393 /* Allocate only VBOXHGCMCMD structure. vmmdevHGCMLoadStateDone will re llocate the command2394 * with ad itional space for parameters and for pointer/pagelists buffer.2393 /* Allocate only VBOXHGCMCMD structure. vmmdevHGCMLoadStateDone will reallocate the command 2394 * with additional space for parameters and for pointer/pagelists buffer. 2395 2395 */ 2396 2396 PVBOXHGCMCMD pCmd = (PVBOXHGCMCMD)RTMemAllocZ (sizeof (VBOXHGCMCMD)); -
trunk/src/VBox/Devices/VMMDev/VMMDevState.h
r32596 r33540 262 262 /** Core id of the CPU to change */ 263 263 uint32_t idCpuCore; 264 /** Package id of the CPU to chang he */264 /** Package id of the CPU to change */ 265 265 uint32_t idCpuPackage; 266 266
Note:
See TracChangeset
for help on using the changeset viewer.