Changeset 41777 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jun 16, 2012 6:49:15 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 25 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. -
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r41069 r41777 966 966 * 967 967 * @returns VBox status code. 968 * @param pVM Pointer to the shared VM structure.968 * @param pVM Pointer to the VM. 969 969 */ 970 970 GVMMR0DECL(int) GVMMR0InitVM(PVM pVM) … … 1006 1006 * of the VM. 1007 1007 * 1008 * @param pVM Pointer to the shared VM structure.1008 * @param pVM Pointer to the VM. 1009 1009 * @thread EMT(0) 1010 1010 */ … … 1026 1026 * 1027 1027 * @returns true if termination hasn't been done already, false if it has. 1028 * @param pVM Pointer to the shared VM structure.1028 * @param pVM Pointer to the VM. 1029 1029 * @param pGVM Pointer to the global VM structure. Optional. 1030 1030 * @thread EMT(0) … … 1540 1540 * Lookup a VM by its global handle. 1541 1541 * 1542 * @returns The VM handleon success, NULL on failure.1542 * @returns Pointer to the VM on success, NULL on failure. 1543 1543 * @param hGVM The global VM handle. Asserts on bad handle. 1544 1544 */ … … 1557 1557 * call may or not be an EMT thread. 1558 1558 * 1559 * @returns The VM handleon success, NULL on failure.1559 * @returns Pointer to the VM on success, NULL on failure. 1560 1560 * @param hEMT The native thread handle of the EMT. 1561 1561 * NIL_RTNATIVETHREAD means the current thread … … 1755 1755 * @returns VINF_SUCCESS normal wakeup (timeout or kicked by other thread). 1756 1756 * VERR_INTERRUPTED if a signal was scheduled for the thread. 1757 * @param pVM Pointer to the shared VM structure.1757 * @param pVM Pointer to the VM. 1758 1758 * @param idCpu The Virtual CPU ID of the calling EMT. 1759 1759 * @param u64ExpireGipTime The time for the sleep to expire expressed as GIP time. … … 1890 1890 * @retval VINF_GVM_NOT_BLOCKED if the EMT wasn't blocked. 1891 1891 * 1892 * @param pVM Pointer to the shared VM structure.1892 * @param pVM Pointer to the VM. 1893 1893 * @param idCpu The Virtual CPU ID of the EMT to wake up. 1894 1894 * @param fTakeUsedLock Take the used lock or not … … 1944 1944 * @retval VINF_GVM_NOT_BLOCKED if the EMT wasn't blocked. 1945 1945 * 1946 * @param pVM Pointer to the shared VM structure.1946 * @param pVM Pointer to the VM. 1947 1947 * @param idCpu The Virtual CPU ID of the EMT to wake up. 1948 1948 * @thread Any but EMT. … … 1962 1962 * 1963 1963 * @param pGVM The global (ring-0) VM structure. 1964 * @param pVCpu The Virtual CPU handle.1964 * @param pVCpu Pointer to the VMCPU. 1965 1965 */ 1966 1966 DECLINLINE(int) gvmmR0SchedPokeOne(PGVM pGVM, PVMCPU pVCpu) … … 1988 1988 * @retval VINF_GVM_NOT_BUSY_IN_GC if the EMT wasn't busy in GC. 1989 1989 * 1990 * @param pVM Pointer to the shared VM structure.1990 * @param pVM Pointer to the VM. 1991 1991 * @param idCpu The ID of the virtual CPU to poke. 1992 1992 * @param fTakeUsedLock Take the used lock or not … … 2026 2026 * @retval VINF_GVM_NOT_BUSY_IN_GC if the EMT wasn't busy in GC. 2027 2027 * 2028 * @param pVM Pointer to the shared VM structure.2028 * @param pVM Pointer to the VM. 2029 2029 * @param idCpu The ID of the virtual CPU to poke. 2030 2030 */ … … 2040 2040 * @returns VBox status code, no informational stuff. 2041 2041 * 2042 * @param pVM Pointer to the shared VM structure.2042 * @param pVM Pointer to the VM. 2043 2043 * @param pSleepSet The set of sleepers to wake up. 2044 2044 * @param pPokeSet The set of CPUs to poke. … … 2086 2086 * 2087 2087 * @returns see GVMMR0SchedWakeUpAndPokeCpus. 2088 * @param pVM Pointer to the shared VM structure.2089 * @param pReq The request packet.2088 * @param pVM Pointer to the VM. 2089 * @param pReq Pointer to the request packet. 2090 2090 */ 2091 2091 GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpusReq(PVM pVM, PGVMMSCHEDWAKEUPANDPOKECPUSREQ pReq) … … 2110 2110 * @returns VINF_SUCCESS if not yielded. 2111 2111 * VINF_GVM_YIELDED if an attempt to switch to a different VM task was made. 2112 * @param pVM Pointer to the shared VM structure.2112 * @param pVM Pointer to the VM. 2113 2113 * @param idCpu The Virtual CPU ID of the calling EMT. 2114 2114 * @param u64ExpireGipTime The time for the sleep to expire expressed as GIP time. … … 2240 2240 * The caller must check that the host can do high resolution timers. 2241 2241 * 2242 * @param pVM The VM handle.2242 * @param pVM Pointer to the VM. 2243 2243 * @param idHostCpu The current host CPU id. 2244 2244 * @param uHz The desired frequency. … … 2437 2437 * 2438 2438 * @returns see GVMMR0QueryStatistics. 2439 * @param pVM Pointer to the shared VM structure. Optional.2440 * @param pReq The request packet.2439 * @param pVM Pointer to the VM. Optional. 2440 * @param pReq Pointer to the request packet. 2441 2441 */ 2442 2442 GVMMR0DECL(int) GVMMR0QueryStatisticsReq(PVM pVM, PGVMMQUERYSTATISTICSSREQ pReq) … … 2552 2552 * 2553 2553 * @returns see GVMMR0ResetStatistics. 2554 * @param pVM Pointer to the shared VM structure. Optional.2555 * @param pReq The request packet.2554 * @param pVM Pointer to the VM. Optional. 2555 * @param pReq Pointer to the request packet. 2556 2556 */ 2557 2557 GVMMR0DECL(int) GVMMR0ResetStatisticsReq(PVM pVM, PGVMMRESETSTATISTICSSREQ pReq) -
trunk/src/VBox/VMM/VMMR3/DBGF.cpp
r40274 r41777 874 874 * 875 875 * @returns VBox status code. 876 * @param pVM Pointer to the shared VM structure.876 * @param pVM Pointer to the VM. 877 877 */ 878 878 static DECLCALLBACK(int) dbgfR3Attach(PVM pVM) -
trunk/src/VBox/VMM/VMMR3/DBGFMem.cpp
r38838 r41777 137 137 * 138 138 * @returns VBox status code. 139 * @param pVM Pointer to the shared VM structure.139 * @param pVM Pointer to the VM. 140 140 * @param pAddress Where to start reading. 141 141 * @param pvBuf Where to store the data we've read. … … 197 197 * @returns VBox status code. 198 198 * 199 * @param pVM Pointer to the shared VM structure.199 * @param pVM Pointer to the VM. 200 200 * @param idCpu The ID of the source CPU context (for the address). 201 201 * @param pAddress Where to start reading. … … 221 221 * @returns VBox status code. 222 222 * 223 * @param pVM Pointer to the shared VM structure.223 * @param pVM Pointer to the VM. 224 224 * @param idCpu The ID of the source CPU context (for the address). 225 225 * @param pAddress Where to start reading. … … 269 269 * @returns VBox status code. 270 270 * 271 * @param pVM Pointer to the shared VM structure.271 * @param pVM Pointer to the VM. 272 272 * @param idCpu The ID of the source CPU context (for the address). 273 273 * @param pAddress Where to start reading. … … 300 300 * @returns VBox status code. 301 301 * 302 * @param pVM Pointer to the shared VM structure.302 * @param pVM Pointer to the VM. 303 303 * @param idCpu The ID of the target CPU context (for the address). 304 304 * @param pAddress Where to start writing. … … 357 357 * @returns VBox status code. 358 358 * 359 * @param pVM Pointer to the shared VM structure.359 * @param pVM Pointer to the VM. 360 360 * @param idCpu The ID of the target CPU context (for the address). 361 361 * @param pAddress Where to start writing. -
trunk/src/VBox/VMM/VMMR3/DBGFOS.cpp
r38838 r41777 46 46 * Internal cleanup routine called by DBGFR3Term(). 47 47 * 48 * @param pVM Pointer to the shared VM structure.48 * @param pVM Pointer to the VM. 49 49 */ 50 50 void dbgfR3OSTerm(PVM pVM) … … 77 77 * 78 78 * @returns VBox status code. 79 * @param pVM Pointer to the shared VM structure.79 * @param pVM Pointer to the VM. 80 80 * @param pReg The registration structure. 81 81 */ … … 126 126 * 127 127 * @returns VBox status code. 128 * @param pVM Pointer to the shared VM structure.128 * @param pVM Pointer to the VM. 129 129 * @param pReg The registration structure. 130 130 * @thread Any. … … 164 164 * 165 165 * @returns VBox status code. 166 * @param pVM Pointer to the shared VM structure.166 * @param pVM Pointer to the VM. 167 167 * @param pReg The registration structure. 168 168 */ … … 216 216 * @returns VBox status code. 217 217 * 218 * @param pVM Pointer to the shared VM structure.218 * @param pVM Pointer to the VM. 219 219 * @param pReg The registration structure. 220 220 * @thread Any. … … 258 258 * @retval VINF_DBGF_OS_NOT_DETCTED if we cannot figure it out. 259 259 * 260 * @param pVM Pointer to the shared VM structure.260 * @param pVM Pointer to the VM. 261 261 * @param pszName Where to store the OS name. Empty string if not detected. 262 262 * @param cchName Size of the buffer. … … 305 305 * @retval VINF_DBGF_OS_NOT_DETCTED if we cannot figure it out. 306 306 * 307 * @param pVM Pointer to the shared VM structure.307 * @param pVM Pointer to the VM. 308 308 * @param pszName Where to store the OS name. Empty string if not detected. 309 309 * @param cchName Size of the buffer. … … 327 327 * 328 328 * @returns VBox status code. 329 * @param pVM Pointer to the shared VM structure.329 * @param pVM Pointer to the VM. 330 330 * @param pszName Where to store the OS name. Optional. 331 331 * @param cchName The size of the name buffer. … … 374 374 * 375 375 * @returns VBox status code. 376 * @param pVM Pointer to the shared VM structure.376 * @param pVM Pointer to the VM. 377 377 * @param pszName Where to store the OS name. Optional. 378 378 * @param cchName The size of the name buffer. … … 405 405 * EMT worker for DBGFR3OSQueryInterface. 406 406 * 407 * @param pVM Pointer to the shared VM structure.407 * @param pVM Pointer to the VM. 408 408 * @param enmIf The interface identifier. 409 409 * @param ppvIf Where to store the interface pointer on success. … … 430 430 * @returns Pointer to the digger interface on success, NULL if the interfaces isn't 431 431 * available or no active guest OS digger. 432 * @param pVM Pointer to the shared VM structure.432 * @param pVM Pointer to the VM. 433 433 * @param enmIf The interface identifier. 434 434 * @thread Any. -
trunk/src/VBox/VMM/VMMR3/GMM.cpp
r39405 r41777 71 71 * 72 72 * @returns VINF_SUCCESS or VERR_NO_TMP_MEMORY. 73 * @param pVM Pointer to the shared VM structure.73 * @param pVM Pointer to the VM. 74 74 * @param[out] ppReq Where to store the pointer to the request packet. 75 75 * @param cPages The number of pages that's to be allocated. … … 98 98 * 99 99 * @returns VBox status code. 100 * @param pVM Pointer to the shared VM structure.100 * @param pVM Pointer to the VM. 101 101 * @param pReq Pointer to the request (returned by GMMR3AllocatePagesPrepare). 102 102 */ … … 152 152 * 153 153 * @returns VINF_SUCCESS or VERR_NO_TMP_MEMORY. 154 * @param pVM Pointer to the shared VM structure.154 * @param pVM Pointer to the VM. 155 155 * @param[out] ppReq Where to store the pointer to the request packet. 156 156 * @param cPages The number of pages that's to be freed. … … 178 178 * 179 179 * @returns VINF_SUCCESS or VERR_NO_TMP_MEMORY. 180 * @param pVM Pointer to the shared VM structure.180 * @param pVM Pointer to the VM. 181 181 * @param pReq A request buffer previously returned by 182 182 * GMMR3FreePagesPrepare(). … … 200 200 * 201 201 * @returns VBox status code. 202 * @param pVM Pointer to the shared VM structure.202 * @param pVM Pointer to the VM. 203 203 * @param pReq Pointer to the request (returned by GMMR3FreePagesPrepare). 204 204 * @param cActualPages The number of pages actually freed. … … 246 246 * This will not call VMSetError on failure but will use AssertLogRel instead. 247 247 * 248 * @param pVM Pointer to the shared VM structure.248 * @param pVM Pointer to the VM. 249 249 * @param pAllocReq The allocation request to undo. 250 250 */ -
trunk/src/VBox/VMM/VMMR3/MMHyper.cpp
r39402 r41777 527 527 * @return VBox status code. 528 528 * 529 * @param pVM Pointer to the shared VM structure.529 * @param pVM Pointer to the VM. 530 530 * @param pDevIns The device owning the MMIO2 memory. 531 531 * @param iRegion The region. -
trunk/src/VBox/VMM/VMMR3/PDM.cpp
r40958 r41777 570 570 * Worker for pdmR3Term that terminates a LUN chain. 571 571 * 572 * @param pVM Pointer to the shared VM structure.572 * @param pVM Pointer to the VM. 573 573 * @param pLun The head of the chain. 574 574 * @param pszDevice The name of the device (for logging). -
trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp
r40274 r41777 201 201 * 202 202 * @returns VBox status code. 203 * @param pVM Pointer to the shared VM structure.203 * @param pVM Pointer to the VM. 204 204 * @param pDevIns The device instance. 205 205 * @param ppTemplate Where to store the template pointer on success. … … 243 243 * 244 244 * @returns VBox status code. 245 * @param pVM Pointer to the shared VM structure.245 * @param pVM Pointer to the VM. 246 246 * @param pDrvIns The driver instance. 247 247 * @param ppTemplate Where to store the template pointer on success. … … 286 286 * 287 287 * @returns VBox status code. 288 * @param pVM Pointer to the shared VM structure.288 * @param pVM Pointer to the VM. 289 289 * @param pUsbIns The USB device instance. 290 290 * @param ppTemplate Where to store the template pointer on success. … … 328 328 * 329 329 * @returns VBox status code. 330 * @param pVM Pointer to the shared VM structure.330 * @param pVM Pointer to the VM. 331 331 * @param ppTemplate Where to store the template pointer on success. 332 332 * @param pfnCompleted The completion callback routine. … … 426 426 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use. 427 427 * 428 * @param pVM Pointer to the shared VM structure.428 * @param pVM Pointer to the VM. 429 429 * @param pDevIns The device instance. 430 430 */ … … 475 475 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use. 476 476 * 477 * @param pVM Pointer to the shared VM structure.477 * @param pVM Pointer to the VM. 478 478 * @param pDrvIns The driver instance. 479 479 */ … … 524 524 * @retval VERR_PDM_ASYNC_TEMPLATE_BUSY if one or more of the templates are still in use. 525 525 * 526 * @param pVM Pointer to the shared VM structure.526 * @param pVM Pointer to the VM. 527 527 * @param pUsbIns The USB device instance. 528 528 */ … … 905 905 * 906 906 * @returns VBox status code 907 * @param pVM Pointer to the shared VM structure.907 * @param pVM Pointer to the VM. 908 908 */ 909 909 int pdmR3AsyncCompletionInit(PVM pVM) … … 925 925 * 926 926 * @returns VBox status code 927 * @param pVM Pointer to the shared VM structure.927 * @param pVM Pointer to the VM. 928 928 */ 929 929 int pdmR3AsyncCompletionTerm(PVM pVM) … … 943 943 * 944 944 * @returns nothing. 945 * @param pVM Pointer to the shared VM structure.945 * @param pVM Pointer to the VM. 946 946 */ 947 947 void pdmR3AsyncCompletionResume(PVM pVM) -
trunk/src/VBox/VMM/VMMR3/PDMDevice.cpp
r40920 r41777 469 469 * 470 470 * @returns VBox status code. 471 * @param pVM Pointer to the shared VM structure.471 * @param pVM Pointer to the VM. 472 472 */ 473 473 static int pdmR3DevLoadModules(PVM pVM) -
trunk/src/VBox/VMM/VMMR3/PDMNetShaper.cpp
r40712 r41777 83 83 typedef struct PDMNETSHAPER 84 84 { 85 /** Pointer to the shared VM structure. */85 /** Pointer to the VM. */ 86 86 PVM pVM; 87 87 /** Critical section protecting all members below. */ … … 469 469 * 470 470 * @returns VBox status code 471 * @param pVM Pointer to the shared VM structure.471 * @param pVM Pointer to the VM. 472 472 */ 473 473 int pdmR3NetShaperInit(PVM pVM) … … 517 517 518 518 RTMemFree(pszBwGrpId); 519 519 520 520 if (RT_FAILURE(rc)) 521 521 break; -
trunk/src/VBox/VMM/VMMR3/PDMUsb.cpp
r40920 r41777 918 918 * The device must be detached from the HUB at this point. 919 919 * 920 * @param pVM Pointer to the shared VM structure.920 * @param pVM Pointer to the VM. 921 921 * @param pUsbIns The USB device instance to destroy. 922 922 * @thread EMT … … 1065 1065 * 1066 1066 * @returns true / false accordingly. 1067 * @param pVM Pointer to the shared VM structure.1067 * @param pVM Pointer to the VM. 1068 1068 */ 1069 1069 VMMR3DECL(bool) PDMR3USBHasHub(PVM pVM) -
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r39078 r41777 561 561 * @retval VERR_INVALID_ARGUMENT if any other arguments are invalid. 562 562 * 563 * @param pVM Pointer to the shared VM structure.563 * @param pVM Pointer to the VM. 564 564 * @param GCPhys Where to start searching. 565 565 * @param cbRange The number of bytes to search. … … 720 720 * @retval VERR_INVALID_ARGUMENT if any other arguments are invalid. 721 721 * 722 * @param pVM Pointer to the shared VM structure.722 * @param pVM Pointer to the VM. 723 723 * @param pVCpu The CPU context to search in. 724 724 * @param GCPtr Where to start searching. -
trunk/src/VBox/VMM/VMMR3/SSM.cpp
r39402 r41777 950 950 * 951 951 * @returns VBox status code. 952 * @param pVM Pointer to the shared VM structure.952 * @param pVM Pointer to the VM. 953 953 * @param pSSM The SSM handle. 954 954 * @param uPass The data pass number. … … 973 973 * 974 974 * @returns VBox status code. 975 * @param pVM Pointer to the shared VM structure.975 * @param pVM Pointer to the VM. 976 976 * @param pSSM The SSM handle. 977 977 */ … … 1003 1003 * 1004 1004 * @returns VBox status code. 1005 * @param pVM Pointer to the shared VM structure.1005 * @param pVM Pointer to the VM. 1006 1006 * @param pSSM The SSM handle. 1007 1007 * @param uVersion The version (1). … … 1067 1067 * 1068 1068 * @returns VBox status code. 1069 * @param pVM Pointer to the shared VM structure.1069 * @param pVM Pointer to the VM. 1070 1070 * @param pSSM The SSM handle. 1071 1071 * @param uVersion The version (1). -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r41532 r41777 2952 2952 * structure. 2953 2953 * 2954 * @returns Pointer to the shared VM structure.2954 * @returns Pointer to the VM. 2955 2955 * NULL if @a pUVM is invalid (asserted) or if no shared VM structure 2956 2956 * is currently associated with it. -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r40294 r41777 283 283 * 284 284 * @returns VBox status code. 285 * @param pVM Pointer to the shared VM structure.285 * @param pVM Pointer to the VM. 286 286 * 287 287 * @remarks The optional guard page gets it protection setup up during R3 init … … 335 335 * 336 336 * @returns VBox status code. 337 * @param pVM Pointer to the shared VM structure.337 * @param pVM Pointer to the VM. 338 338 */ 339 339 static int vmmR3InitLoggers(PVM pVM) … … 1810 1810 * @returns VBox status code. 1811 1811 * 1812 * @param pVM Pointer to the shared VM structure.1812 * @param pVM Pointer to the VM. 1813 1813 * @param idCpu The ID of the source CPU context (for the address). 1814 1814 * @param R0Addr Where to start reading. -
trunk/src/VBox/VMM/VMMR3/VMMSwitcher.cpp
r41679 r41777 96 96 * 97 97 * @returns VBox status code. 98 * @param pVM Pointer to the shared VM structure.98 * @param pVM Pointer to the VM. 99 99 */ 100 100 int vmmR3SwitcherInit(PVM pVM) … … 229 229 * Relocate the switchers, called by VMMR#Relocate. 230 230 * 231 * @param pVM Pointer to the shared VM structure.231 * @param pVM Pointer to the VM. 232 232 * @param offDelta The relocation delta. 233 233 */ -
trunk/src/VBox/VMM/VMMR3/VMReq.cpp
r39402 r41777 94 94 * returned. 95 95 * 96 * @param pVM Pointer to the shared VM structure.96 * @param pVM Pointer to the VM. 97 97 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 98 98 * one of the following special values: … … 127 127 * @returns VBox status code returned by VMR3ReqCallVU. 128 128 * 129 * @param pVM Pointer to the shared VM structure.129 * @param pVM Pointer to the VM. 130 130 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 131 131 * one of the following special values: … … 156 156 * @returns VBox status code of VMR3ReqCallVU. 157 157 * 158 * @param pVM Pointer to the shared VM structure.158 * @param pVM Pointer to the VM. 159 159 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 160 160 * one of the following special values: … … 187 187 * @returns VBox status code of VMR3ReqCallVU. 188 188 * 189 * @param pVM Pointer to the shared VM structure.189 * @param pVM Pointer to the VM. 190 190 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 191 191 * one of the following special values: … … 222 222 * returned. 223 223 * 224 * @param pVM Pointer to the shared VM structure.224 * @param pVM Pointer to the VM. 225 225 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 226 226 * one of the following special values: … … 256 256 * @returns VBox status code of VMR3ReqCallVU. 257 257 * 258 * @param pVM Pointer to the shared VM structure.258 * @param pVM Pointer to the VM. 259 259 * @param idDstCpu The destination CPU(s). Either a specific CPU ID or 260 260 * one of the following special values: -
trunk/src/VBox/VMM/VMMRC/TRPMRCHandlers.cpp
r41774 r41777 912 912 * @returns VINF_SUCCESS or VINF_EM_RAW_EMULATE_INSTR. 913 913 * 914 * @param pVM Pointer to the shared VM structure.914 * @param pVM Pointer to the VM. 915 915 * @param pVCpu The virtual CPU handle. 916 916 * @param pRegFrame Pointer to the register frame for the trap. -
trunk/src/VBox/VMM/VMMRZ/PGMRZDynMap.cpp
r40806 r41777 466 466 * 467 467 * @returns VBox status code. 468 * @param pVM Pointer to the shared VM structure.468 * @param pVM Pointer to the VM. 469 469 */ 470 470 VMMR0DECL(int) PGMR0DynMapInitVM(PVM pVM) … … 521 521 * Terminates the dynamic mapping cache usage for a VM. 522 522 * 523 * @param pVM Pointer to the shared VM structure.523 * @param pVM Pointer to the VM. 524 524 */ 525 525 VMMR0DECL(void) PGMR0DynMapTermVM(PVM pVM) -
trunk/src/VBox/VMM/include/PDMAsyncCompletionInternal.h
r39014 r41777 170 170 typedef struct PDMASYNCCOMPLETIONEPCLASS 171 171 { 172 /** Pointer to the shared VM structure. */172 /** Pointer to the VM. */ 173 173 PVM pVM; 174 174 /** Critical section protecting the lists below. */
Note:
See TracChangeset
for help on using the changeset viewer.