Changeset 41783 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jun 16, 2012 7:24:15 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r41777 r41783 22 22 * to manage a list of all running VMs, keep a ring-0 only structure (GVM) for 23 23 * each of them, and assign them unique identifiers (so GMM can track page 24 * owners). The GVMM also manage some of the host CPU resources, like the the24 * owners). The GVMM also manage some of the host CPU resources, like the 25 25 * periodic preemption timer. 26 26 * -
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r40956 r41783 543 543 544 544 pdmUnlock(pVM); 545 LogFlow(("pdmR0ApicHlp_CalcIrqTag: caller=%p/%d: returns %#x (u8Level=%d)\n", 545 LogFlow(("pdmR0ApicHlp_CalcIrqTag: caller=%p/%d: returns %#x (u8Level=%d)\n", 546 546 pDevIns, pDevIns->iInstance, uTagSrc, u8Level)); 547 547 return uTagSrc; … … 915 915 * 916 916 * @returns true if delivered, false if postponed. 917 * @param pVM The VM handle.917 * @param pVM Pointer to the VM. 918 918 * @param iIrq The irq. 919 919 * @param iLevel The new level. -
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r39402 r41783 60 60 * @retval VINF_EM_NO_MEMORY if we're out of memory. The FF is set in this case. 61 61 * 62 * @param pVM The VM handle.62 * @param pVM Pointer to the VM. 63 63 * @param pVCpu The VMCPU handle. 64 64 * … … 175 175 * @retval VINF_EM_NO_MEMORY if we're out of memory. 176 176 * 177 * @param pVM The VM handle.177 * @param pVM Pointer to the VM. 178 178 * @param pVCpu The VMCPU handle. 179 179 * … … 321 321 * @returns VBox status code. 322 322 * 323 * @param pVM The VM handle.323 * @param pVM Pointer to the VM. 324 324 */ 325 325 VMMR0_INT_DECL(int) PGMR0PhysSetupIommu(PVM pVM) … … 503 503 * 504 504 * @returns VBox status code (appropriate for trap handling and GC return). 505 * @param pVM The VM Handle.505 * @param pVM Pointer to the VM. 506 506 * @param pVCpu The current CPU. 507 507 * @param enmShwPagingMode Paging mode for the nested page tables. -
trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp
r40054 r41783 39 39 * @returns The following VBox status codes. 40 40 * 41 * @param pVM The VM handle.41 * @param pVM Pointer to the VM. 42 42 * @param pGVM Pointer to the GVM instance data. 43 43 * @param idCpu The ID of the calling virtual CPU. -
trunk/src/VBox/VMM/VMMR0/TRPMR0.cpp
r39038 r41783 34 34 * Dispatches an interrupt that arrived while we were in the guest context. 35 35 * 36 * @param pVM The VM handle.36 * @param pVM Pointer to the VM. 37 37 * @remark Must be called with interrupts disabled. 38 38 */ -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r41147 r41783 403 403 /** 404 404 * Record return code statistics 405 * @param pVM The VM handle.405 * @param pVM Pointer to the VM. 406 406 * @param pVCpu The VMCPU handle. 407 407 * @param rc The status code.
Note:
See TracChangeset
for help on using the changeset viewer.