1
This commit is contained in:
parent
c1f8ea93f7
commit
ab63235836
75
a8/xtimer.cc
75
a8/xtimer.cc
@ -502,4 +502,79 @@ namespace a8
|
|||||||
base->running_timer = nullptr;
|
base->running_timer = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void XTimer::SetTimeout(int time, TimerCb cb)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::SetTimeoutEx(int time, TimerCb cb, Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XTimerWp XTimer::SetTimeoutWp(int time, TimerCb cb)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XTimerWp XTimer::SetTimeoutWpEx(int time, TimerCb cb, Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::SetInterval(int time, a8::TimerCb cb)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::SetIntervalEx(int time, a8::TimerCb cb, Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XTimerWp XTimer::SetIntervalWp(int time, TimerCb cb)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
XTimerWp XTimer::SetIntervalWpEx(int time, TimerCb cb, Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::FireEvent(XTimerWp& timer_wp, a8::Args& args)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::ModifyTime(XTimerWp& timer_wp, int expire_time)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::Delete(XTimerWp& timer_wp)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
long long XTimer::GetRemainTime(XTimerWp& timer_wp)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
bool XTimer::IsRunning()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::ClearAttacher(Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void XTimer::DestoryAttacher(Attacher* attacher)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user