Changeset 41777 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 16, 2012 6:49:15 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78595
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
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:
Note:
See TracChangeset
for help on using the changeset viewer.