From 74a51b6782bc2a0d29cee72c07d5f4c238dbc44b Mon Sep 17 00:00:00 2001 From: Kevin Bracey Date: Fri, 8 May 2020 17:19:26 +0300 Subject: [PATCH] Add ThisThread Chrono stubs --- UNITTESTS/stubs/ThisThread_stub.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/UNITTESTS/stubs/ThisThread_stub.cpp b/UNITTESTS/stubs/ThisThread_stub.cpp index e829dbbdb4..6c1dae9707 100644 --- a/UNITTESTS/stubs/ThisThread_stub.cpp +++ b/UNITTESTS/stubs/ThisThread_stub.cpp @@ -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) +{ +} + }