VirtualBox

Changeset 1470 in vbox for trunk/src/VBox/Runtime/r3/posix


Ignore:
Timestamp:
Mar 14, 2007 2:58:04 PM (18 years ago)
Author:
vboxsync
Message:

Runtime: Stubbed RTTimerStart/Stop.

File:
1 edited

Legend:

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

    r537 r1470  
    316316
    317317
     318RTDECL(int) RTTimerCreateEx(PRTTIMER *ppTimer, uint64_t u64NanoInterval, unsigned fFlags, PFNRTTIMER pfnTimer, void *pvUser)
     319{
     320    /// @todo implement
     321    return VERR_NOT_IMPLEMENTED;
     322}
     323
     324
    318325/**
    319326 * Stops and destroys a running timer.
     
    370377    return rc;
    371378}
     379
     380
     381RTDECL(int) RTTimerStart(PRTTIMER pTimer, uint64_t u64First)
     382{
     383    /// @todo implement
     384    return VERR_NOT_IMPLEMENTED;
     385}
     386
     387
     388RTDECL(int) RTTimerStop(PRTTIMER pTimer)
     389{
     390    /// @todo implement
     391    return VERR_NOT_IMPLEMENTED;
     392}
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