Changeset 39078 in vbox for trunk/src/VBox/VMM/VMMR3/CPUM.cpp
- Timestamp:
- Oct 21, 2011 2:18:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 74507
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r37136 r39078 1034 1034 pCtx->dr[5] = 0; 1035 1035 } 1036 #else 1037 NOREF(pVM); 1036 1038 #endif 1037 return 0;1039 return VINF_SUCCESS; 1038 1040 } 1039 1041 … … 2048 2050 static DECLCALLBACK(int) cpumR3LoadPrep(PVM pVM, PSSMHANDLE pSSM) 2049 2051 { 2052 NOREF(pSSM); 2050 2053 pVM->cpum.s.fPendingRestore = true; 2051 2054 return VINF_SUCCESS; … … 2354 2357 * @param pszPrefix Register name prefix. 2355 2358 */ 2356 static void cpumR3InfoOne(PVM pVM, PCPUMCTX pCtx, PCCPUMCTXCORE pCtxCore, PCDBGFINFOHLP pHlp, CPUMDUMPTYPE enmType, const char *pszPrefix) 2357 { 2359 static void cpumR3InfoOne(PVM pVM, PCPUMCTX pCtx, PCCPUMCTXCORE pCtxCore, PCDBGFINFOHLP pHlp, CPUMDUMPTYPE enmType, 2360 const char *pszPrefix) 2361 { 2362 NOREF(pVM); 2363 2358 2364 /* 2359 2365 * Format the EFLAGS. … … 2651 2657 static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs) 2652 2658 { 2653 char szInstruction[256]; 2654 /* @todo SMP support! */ 2659 NOREF(pszArgs); 2660 2661 /** @todo SMP support! */ 2655 2662 PVMCPU pVCpu = VMMGetCpu(pVM); 2656 2663 if (!pVCpu) 2657 2664 pVCpu = &pVM->aCpus[0]; 2658 2665 2666 char szInstruction[256]; 2659 2667 int rc = DBGFR3DisasInstrCurrent(pVCpu, szInstruction, sizeof(szInstruction)); 2660 2668 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.