VirtualBox

Ignore:
Timestamp:
Oct 22, 2011 12:28:46 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
74515
Message:

IPRT: -Wunused-parameter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/generic/timer-generic.cpp

    r33540 r39083  
    231231    if (!rtTimerIsValid(pTimer))
    232232        return VERR_INVALID_HANDLE;
     233    NOREF(u64NanoInterval);
    233234    return VERR_NOT_SUPPORTED;
    234235}
     
    236237
    237238
    238 static DECLCALLBACK(int) rtTimerThread(RTTHREAD Thread, void *pvUser)
     239static DECLCALLBACK(int) rtTimerThread(RTTHREAD hThreadSelf, void *pvUser)
    239240{
    240241    PRTTIMER pTimer = (PRTTIMER)pvUser;
     242    NOREF(hThreadSelf);
    241243
    242244    /*
     
    323325RTDECL(int) RTTimerRequestSystemGranularity(uint32_t u32Request, uint32_t *pu32Granted)
    324326{
     327    NOREF(u32Request); NOREF(pu32Granted);
    325328    return VERR_NOT_SUPPORTED;
    326329}
     
    330333RTDECL(int) RTTimerReleaseSystemGranularity(uint32_t u32Granted)
    331334{
     335    NOREF(u32Granted);
    332336    return VERR_NOT_SUPPORTED;
    333337}
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