Changeset 14299 in vbox
- Timestamp:
- Nov 18, 2008 1:25:40 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGF.cpp
r13973 r14299 986 986 987 987 /** 988 * Checks if the thedebugger can wait for events or not.988 * Checks if the debugger can wait for events or not. 989 989 * 990 990 * This function is only used by lazy, multiplexing debuggers. :-) -
trunk/src/VBox/VMM/MM.cpp
r14071 r14299 780 780 781 781 /* 782 * Map the thepages.782 * Map the pages. 783 783 */ 784 784 PSUPPAGE pPhysPage = &pLockedMem->aPhysPages[iPage]; -
trunk/src/VBox/VMM/PATM/VMMAll/CSAMAll.cpp
r13832 r14299 168 168 * to the caller simplifies the interface (PTE passing). 169 169 * 170 * Note th ethe page has not yet been synced, so the TLB trick170 * Note that the page has not yet been synced, so the TLB trick 171 171 * (which wasn't ever active anyway) cannot be applied. 172 172 * -
trunk/src/VBox/VMM/PDMDevice.cpp
r14072 r14299 94 94 * is determined, and finally they are instantiated. 95 95 * 96 * After all device have been successfully instantiated thethe primary96 * After all devices have been successfully instantiated the primary 97 97 * PCI Bus device is called to emulate the PCI BIOS, i.e. making the 98 98 * resource assignments. If there is no PCI device, this step is of course -
trunk/src/VBox/VMM/PDMThread.cpp
r12989 r14299 667 667 * 668 668 * The purpose of this API is to tell the PDMR3ThreadResume caller that 669 * the thePDM thread has successfully resumed. It will also do the669 * the PDM thread has successfully resumed. It will also do the 670 670 * state transition from the resuming to the running state. 671 671 * -
trunk/src/VBox/VMM/PGMDbg.cpp
r13937 r14299 404 404 cbPrev = 0; 405 405 406 /* advance to the thenext page. */406 /* advance to the next page. */ 407 407 GCPhys |= PAGE_OFFSET_MASK; 408 408 if (GCPhys++ >= GCPhysLast) … … 499 499 cbPrev = 0; /* ignore error. */ 500 500 501 /* advance to the thenext page. */501 /* advance to the next page. */ 502 502 GCPtr |= PAGE_OFFSET_MASK; 503 503 GCPtr++; -
trunk/src/VBox/VMM/VMM.cpp
r14239 r14299 895 895 896 896 /** 897 * Suspends the theCPU yielder.897 * Suspends the CPU yielder. 898 898 * 899 899 * @param pVM The VM handle. … … 916 916 917 917 /** 918 * Stops the theCPU yielder.918 * Stops the CPU yielder. 919 919 * 920 920 * @param pVM The VM handle. … … 954 954 { 955 955 /* 956 * This really needs some careful tuning. While we shouldn't be too gre ady since956 * This really needs some careful tuning. While we shouldn't be too greedy since 957 957 * that'll cause the rest of the system to stop up, we shouldn't be too nice either 958 958 * because that'll cause us to stop up. -
trunk/src/VBox/VMM/VMMAll/TMAllVirtual.cpp
r14253 r14299 483 483 * Complete the calculation of the current TMCLOCK_VIRTUAL_SYNC time. The current 484 484 * approach is to never pass the head timer. So, when we do stop the clock and 485 * set the t he timer pending flag.485 * set the timer pending flag. 486 486 */ 487 487 u64 -= off; -
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r12930 r14299 328 328 329 329 /** @def GMM_PAGE_PFN_END 330 * The end of the thevalid guest pfn range, {0..GMM_PAGE_PFN_END-1}.330 * The end of the valid guest pfn range, {0..GMM_PAGE_PFN_END-1}. 331 331 * @remark Some of the values outside the range has special meaning, see related \#defines. 332 332 */
Note:
See TracChangeset
for help on using the changeset viewer.