Changeset 41982 in vbox for trunk/src/VBox
- Timestamp:
- Jul 2, 2012 11:36:51 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMHandler.cpp
r41981 r41982 557 557 "%*s %*s %*s %*s HandlerGC UserGC Type Description\n", 558 558 pVM->pgm.s.pTreesR3->PhysHandlers, pVM->pgm.s.pTreesR3->PhysHandlers, 559 - sizeof(RTGCPHYS) * 2, "From",560 - sizeof(RTGCPHYS) * 2 - 3, "- To (incl)",561 - sizeof(RTHCPTR) * 2 - 1, "HandlerHC",562 - sizeof(RTHCPTR) * 2 - 1, "UserHC");559 - (int)sizeof(RTGCPHYS) * 2, "From", 560 - (int)sizeof(RTGCPHYS) * 2 - 3, "- To (incl)", 561 - (int)sizeof(RTHCPTR) * 2 - 1, "HandlerHC", 562 - (int)sizeof(RTHCPTR) * 2 - 1, "UserHC"); 563 563 RTAvlroGCPhysDoWithAll(&pVM->pgm.s.pTreesR3->PhysHandlers, true, pgmR3InfoHandlersPhysicalOne, &Args); 564 564 } … … 569 569 "Virtual handlers:\n" 570 570 "%*s %*s %*s %*s Type Description\n", 571 - sizeof(RTGCPTR) * 2, "From",572 - sizeof(RTGCPTR) * 2 - 3, "- To (excl)",573 - sizeof(RTHCPTR) * 2 - 1, "HandlerHC",574 - sizeof(RTRCPTR) * 2 - 1, "HandlerGC");571 - (int)sizeof(RTGCPTR) * 2, "From", 572 - (int)sizeof(RTGCPTR) * 2 - 3, "- To (excl)", 573 - (int)sizeof(RTHCPTR) * 2 - 1, "HandlerHC", 574 - (int)sizeof(RTRCPTR) * 2 - 1, "HandlerGC"); 575 575 RTAvlroGCPtrDoWithAll(&pVM->pgm.s.pTreesR3->VirtHandlers, true, pgmR3InfoHandlersVirtualOne, &Args); 576 576 } … … 581 581 "Hypervisor Virtual handlers:\n" 582 582 "%*s %*s %*s %*s Type Description\n", 583 - sizeof(RTGCPTR) * 2, "From",584 - sizeof(RTGCPTR) * 2 - 3, "- To (excl)",585 - sizeof(RTHCPTR) * 2 - 1, "HandlerHC",586 - sizeof(RTRCPTR) * 2 - 1, "HandlerGC");583 - (int)sizeof(RTGCPTR) * 2, "From", 584 - (int)sizeof(RTGCPTR) * 2 - 3, "- To (excl)", 585 - (int)sizeof(RTHCPTR) * 2 - 1, "HandlerHC", 586 - (int)sizeof(RTRCPTR) * 2 - 1, "HandlerGC"); 587 587 RTAvlroGCPtrDoWithAll(&pVM->pgm.s.pTreesR3->HyperVirtHandlers, true, pgmR3InfoHandlersVirtualOne, &Args); 588 588 }
Note:
See TracChangeset
for help on using the changeset viewer.