Changeset 17 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 15, 2007 12:12:33 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17443
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r1 r17 1 1 /** @file 2 *3 2 * VMM - Host Context Ring 0. 4 3 */ … … 342 341 switch (pVM->vmm.s.enmCallHostOperation) 343 342 { 344 case VMMCALLHOST_PDM_LOCK:345 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPDMLock);346 break;347 case VMMCALLHOST_PDM_QUEUE_FLUSH:348 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPDMQueueFlush);349 break;350 case VMMCALLHOST_PGM_POOL_GROW:351 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMPoolGrow);352 break;353 case VMMCALLHOST_PGM_LOCK:354 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMLock);355 break;356 case VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS:357 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetRemReplay);358 break;359 case VMMCALLHOST_PGM_RAM_GROW_RANGE:360 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMGrowRAM);361 break;362 case VMMCALLHOST_VMM_LOGGER_FLUSH:363 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetLogFlush);364 break;365 case VMMCALLHOST_VM_SET_ERROR:366 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetVMSetError);367 break;368 default:369 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetCallHost);370 break;343 case VMMCALLHOST_PDM_LOCK: 344 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPDMLock); 345 break; 346 case VMMCALLHOST_PDM_QUEUE_FLUSH: 347 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPDMQueueFlush); 348 break; 349 case VMMCALLHOST_PGM_POOL_GROW: 350 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMPoolGrow); 351 break; 352 case VMMCALLHOST_PGM_LOCK: 353 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMLock); 354 break; 355 case VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS: 356 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetRemReplay); 357 break; 358 case VMMCALLHOST_PGM_RAM_GROW_RANGE: 359 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetPGMGrowRAM); 360 break; 361 case VMMCALLHOST_VMM_LOGGER_FLUSH: 362 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetLogFlush); 363 break; 364 case VMMCALLHOST_VM_SET_ERROR: 365 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetVMSetError); 366 break; 367 default: 368 STAM_COUNTER_INC(&pVM->vmm.s.StatGCRetCallHost); 369 break; 371 370 } 372 371 break; … … 683 682 rc = g_pVMAssert->vmm.s.rcCallHost; 684 683 } 685 684 686 685 return true; 687 686 }
Note:
See TracChangeset
for help on using the changeset viewer.