VirtualBox

Ignore:
Timestamp:
Jul 13, 2016 5:46:32 PM (8 years ago)
Author:
vboxsync
Message:

DBGCCommands.cpp: Removed duplicate dbgcFuncRandU32 function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/DBGCCommands.cpp

    r59229 r62228  
    17781778}
    17791779
    1780 
    1781 
    1782 /**
    1783  * @callback_method_impl{FNDBGCFUNC, The randu32() function implementation.}
    1784  */
    1785 static DECLCALLBACK(int) dbgcFuncRandU32(PCDBGCFUNC pFunc, PDBGCCMDHLP pCmdHlp, PVM pUVM, PCDBGCVAR paArgs, uint32_t cArgs,
    1786                                          PDBGCVAR pResult)
    1787 {
    1788     AssertReturn(cArgs == 0, VERR_DBGC_PARSE_BUG);
    1789     uint32_t u32 = RTRandU32();
    1790     DBGCVAR_INIT_NUMBER(pResult, u32);
    1791     NOREF(pFunc); NOREF(pCmdHlp); NOREF(pUVM); NOREF(paArgs);
    1792     return VINF_SUCCESS;
    1793 }
    1794 
Note: See TracChangeset for help on using the changeset viewer.

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