We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7eae1 commit ee88235Copy full SHA for ee88235
UNITTESTS/stubs/Semaphore_stub.cpp
@@ -53,11 +53,21 @@ bool Semaphore::try_acquire_for(uint32_t millisec)
53
return Semaphore_stub::acquire_return_value;
54
}
55
56
+bool Semaphore::try_acquire_for(Kernel::Clock::duration_u32 rel_time)
57
+{
58
+ return Semaphore_stub::acquire_return_value;
59
+}
60
+
61
bool Semaphore::try_acquire_until(uint64_t millisec)
62
{
63
64
65
66
+bool Semaphore::try_acquire_until(Kernel::Clock::time_point abs_time)
67
68
69
70
71
osStatus Semaphore::release(void)
72
73
return 0;
0 commit comments