- Timestamp:
- Jan 28, 2013 9:58:16 AM (12 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
r43045 r44410 23 23 #include <VBox/vmm/pgm.h> 24 24 #include <VBox/vmm/stam.h> 25 #include <VBox/vmm/uvm.h> 25 26 #include "PGMInternal.h" 26 27 #include <VBox/vmm/vm.h> … … 328 329 * @param cArgs Number of arguments in the array. 329 330 */ 330 DECLCALLBACK(int) pgmR3CmdCheckDuplicatePages(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, P VM pVM, PCDBGCVAR paArgs, unsigned cArgs)331 DECLCALLBACK(int) pgmR3CmdCheckDuplicatePages(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs) 331 332 { 332 333 unsigned cBallooned = 0; … … 338 339 unsigned cPages = 0; 339 340 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs); 341 PVM pVM = pUVM->pVM; 340 342 341 343 pgmLock(pVM); … … 420 422 * @param cArgs Number of arguments in the array. 421 423 */ 422 DECLCALLBACK(int) pgmR3CmdShowSharedModules(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, P VM pVM, PCDBGCVAR paArgs, unsigned cArgs)424 DECLCALLBACK(int) pgmR3CmdShowSharedModules(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs) 423 425 { 424 426 NOREF(pCmd); NOREF(paArgs); NOREF(cArgs); 427 PVM pVM = pUVM->pVM; 425 428 426 429 pgmLock(pVM); -
trunk/src/VBox/VMM/include/PGMInternal.h
r43872 r44410 4025 4025 4026 4026 # if defined(VBOX_STRICT) && HC_ARCH_BITS == 64 && defined(IN_RING3) 4027 DECLCALLBACK(int) pgmR3CmdCheckDuplicatePages(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, P VM pVM, PCDBGCVAR paArgs, unsigned cArgs);4028 DECLCALLBACK(int) pgmR3CmdShowSharedModules(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, P VM pVM, PCDBGCVAR paArgs, unsigned cArgs);4027 DECLCALLBACK(int) pgmR3CmdCheckDuplicatePages(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs); 4028 DECLCALLBACK(int) pgmR3CmdShowSharedModules(PCDBGCCMD pCmd, PDBGCCMDHLP pCmdHlp, PUVM pUVM, PCDBGCVAR paArgs, unsigned cArgs); 4029 4029 # endif 4030 4030
Note:
See TracChangeset
for help on using the changeset viewer.