VirtualBox

Ignore:
Timestamp:
Oct 21, 2011 2:18:22 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
74507
Message:

VMM: -Wunused-parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUM.cpp

    r37136 r39078  
    10341034        pCtx->dr[5]              = 0;
    10351035    }
     1036#else
     1037    NOREF(pVM);
    10361038#endif
    1037     return 0;
     1039    return VINF_SUCCESS;
    10381040}
    10391041
     
    20482050static DECLCALLBACK(int) cpumR3LoadPrep(PVM pVM, PSSMHANDLE pSSM)
    20492051{
     2052    NOREF(pSSM);
    20502053    pVM->cpum.s.fPendingRestore = true;
    20512054    return VINF_SUCCESS;
     
    23542357 * @param   pszPrefix   Register name prefix.
    23552358 */
    2356 static void cpumR3InfoOne(PVM pVM, PCPUMCTX pCtx, PCCPUMCTXCORE pCtxCore, PCDBGFINFOHLP pHlp, CPUMDUMPTYPE enmType, const char *pszPrefix)
    2357 {
     2359static void cpumR3InfoOne(PVM pVM, PCPUMCTX pCtx, PCCPUMCTXCORE pCtxCore, PCDBGFINFOHLP pHlp, CPUMDUMPTYPE enmType,
     2360                          const char *pszPrefix)
     2361{
     2362    NOREF(pVM);
     2363
    23582364    /*
    23592365     * Format the EFLAGS.
     
    26512657static DECLCALLBACK(void) cpumR3InfoGuestInstr(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
    26522658{
    2653     char szInstruction[256];
    2654     /* @todo SMP support! */
     2659    NOREF(pszArgs);
     2660
     2661    /** @todo SMP support! */
    26552662    PVMCPU pVCpu = VMMGetCpu(pVM);
    26562663    if (!pVCpu)
    26572664        pVCpu = &pVM->aCpus[0];
    26582665
     2666    char szInstruction[256];
    26592667    int rc = DBGFR3DisasInstrCurrent(pVCpu, szInstruction, sizeof(szInstruction));
    26602668    if (RT_SUCCESS(rc))
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette