Changeset 41777 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 16, 2012 6:49:15 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78595
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/MMAll.cpp
r40652 r41777 245 245 * 246 246 * @returns the host context ring-0 address. 247 * @param pVM Pointer to the shared VM structure.247 * @param pVM Pointer to the VM. 248 248 * @param pLookup The HMA lookup record. 249 249 * @param off The offset into the HMA memory chunk. -
trunk/src/VBox/VMM/VMMAll/MMAllHyper.cpp
r35346 r41777 1187 1187 * defined at build time. 1188 1188 * 1189 * @param pVM Pointer to the shared VM structure.1189 * @param pVM Pointer to the VM. 1190 1190 */ 1191 1191 VMMDECL(void) MMHyperHeapCheck(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r40274 r41777 1272 1272 * @returns true if it's an all access handler, false if it's a write access 1273 1273 * handler. 1274 * @param pVM Pointer to the shared VM structure.1274 * @param pVM Pointer to the VM. 1275 1275 * @param GCPhys The address of the page with a disabled handler. 1276 1276 * … … 1505 1505 * virtual handlers to the log. 1506 1506 * 1507 * @param pVM Pointer to the shared VM structure.1507 * @param pVM Pointer to the VM. 1508 1508 */ 1509 1509 void pgmHandlerVirtualDumpPhysPages(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r40274 r41777 239 239 * Make REM flush all translation block upon the next call to REMR3State(). 240 240 * 241 * @param pVM Pointer to the shared VM structure.241 * @param pVM Pointer to the VM. 242 242 */ 243 243 VMMDECL(void) REMFlushTBs(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/TMAll.cpp
r40274 r41777 648 648 * 649 649 * @returns See tmTimerPollInternal. 650 * @param pVM Pointer to the shared VM structure.650 * @param pVM Pointer to the VM. 651 651 * @param u64Now Current virtual clock timestamp. 652 652 * @param u64Delta The delta to the next even in ticks of the … … 695 695 * 696 696 * @returns See tmTimerPollInternal. 697 * @param pVM Pointer to the shared VM structure.697 * @param pVM Pointer to the VM. 698 698 * @param u64Now Current virtual clock timestamp. 699 699 * @param pu64Delta Where to return the delta. … … 711 711 * 712 712 * @returns See tmTimerPollInternal. 713 * @param pVM Pointer to the shared VM structure.713 * @param pVM Pointer to the VM. 714 714 * @param pVCpu Pointer to the shared VMCPU structure of the 715 715 * caller. … … 738 738 * 0 if the next event has already expired. 739 739 * 740 * @param pVM Pointer to the shared VM structure.740 * @param pVM Pointer to the VM. 741 741 * @param pVCpu Pointer to the shared VMCPU structure of the caller. 742 742 * @param pu64Delta Where to store the delta. … … 953 953 * @returns true if timers are pending, false if not. 954 954 * 955 * @param pVM Pointer to the shared VM structure.955 * @param pVM Pointer to the VM. 956 956 * @param pVCpu Pointer to the shared VMCPU structure of the caller. 957 957 * @thread The emulation thread. … … 971 971 * This function is called before FFs are checked in the inner execution EM loops. 972 972 * 973 * @param pVM Pointer to the shared VM structure.973 * @param pVM Pointer to the VM. 974 974 * @param pVCpu Pointer to the shared VMCPU structure of the caller. 975 975 * @thread The emulation thread. … … 989 989 * @returns The GIP timestamp of the next event. 990 990 * 0 if the next event has already expired. 991 * @param pVM Pointer to the shared VM structure.991 * @param pVM Pointer to the VM. 992 992 * @param pVCpu Pointer to the shared VMCPU structure of the caller. 993 993 * @param pu64Delta Where to store the delta.
Note:
See TracChangeset
for help on using the changeset viewer.