Changeset 87792 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Feb 18, 2021 6:38:24 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142852
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp
r86683 r87792 910 910 PDMR0InitPerVMData(pGVM); 911 911 IOMR0InitPerVMData(pGVM); 912 TMR0InitPerVMData(pGVM); 912 913 if (RT_SUCCESS(rc) && RT_SUCCESS(rc2)) 913 914 { … … 1306 1307 DBGFR0CleanupVM(pGVM); 1307 1308 PGMR0CleanupVM(pGVM); 1309 TMR0CleanupVM(pGVM); 1308 1310 1309 1311 AssertCompile(NIL_RTTHREADCTXHOOK == (RTTHREADCTXHOOK)0); /* Depends on zero initialized memory working for NIL at the moment. */ -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r87666 r87792 2310 2310 2311 2311 /* 2312 * TM requests. 2313 */ 2314 case VMMR0_DO_TM_GROW_TIMER_QUEUE: 2315 { 2316 if (pReqHdr || idCpu == NIL_VMCPUID) 2317 return VERR_INVALID_PARAMETER; 2318 rc = TMR0TimerQueueGrow(pGVM, RT_HI_U32(u64Arg), RT_LO_U32(u64Arg)); 2319 VMM_CHECK_SMAP_CHECK2(pGVM, RT_NOTHING); 2320 break; 2321 } 2322 2323 /* 2312 2324 * For profiling. 2313 2325 */ … … 2390 2402 if ( pVM != NULL 2391 2403 && pGVM != NULL 2392 && pVM == pGVM /** @todo drop p GVM */2404 && pVM == pGVM /** @todo drop pVM or pGVM */ 2393 2405 && idCpu < pGVM->cCpus 2394 2406 && pGVM->pSession == pSession
Note:
See TracChangeset
for help on using the changeset viewer.