Add ThisThread Chrono stubs

pull/12430/head
Kevin Bracey 2020-05-08 17:19:26 +03:00
parent ee88235e69
commit 74a51b6782
1 changed files with 8 additions and 0 deletions

View File

@ -23,8 +23,16 @@ void ThisThread::sleep_until(uint64_t millisec)
{
}
void ThisThread::sleep_until(Kernel::Clock::time_point abs_time)
{
}
void ThisThread::sleep_for(uint32_t millisec)
{
}
void ThisThread::sleep_for(Kernel::Clock::duration_u32 rel_time)
{
}
}