F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
ConditionVariable.cpp
Go to the documentation of this file.
1
// ======================================================================
2
// \title Os/Stub/ConditionVariable.cpp
3
// \brief Stub implementations for Os::ConditionVariable
4
// ======================================================================
5
#include "
Os/Stub/ConditionVariable.hpp
"
6
#include "
Fw/Types/Assert.hpp
"
7
8
namespace
Os
{
9
namespace
Stub {
10
namespace
Mutex
{
11
12
void
StubConditionVariable::wait
(
Os::Mutex
& mutex) {
13
// This stub implementation can only be used in deployments that never need to wait on any ConditionVariable.
14
// Trigger an assertion if anyone ever tries to wait.
15
FW_ASSERT
(0);
16
}
17
void
StubConditionVariable::notify
() {
18
// Nobody is waiting, because we assert if anyone tries to wait.
19
// Therefore, we can notify all waiters by doing nothing.
20
}
21
void
StubConditionVariable::notifyAll
() {
22
// Nobody is waiting, because we assert if anyone tries to wait.
23
// Therefore, we can notify all waiters by doing nothing.
24
}
25
26
ConditionVariableHandle
*
StubConditionVariable::getHandle
() {
27
return
&m_handle;
28
}
29
30
}
31
}
32
}
Assert.hpp
FW_ASSERT
#define FW_ASSERT(...)
Definition
Assert.hpp:14
ConditionVariable.hpp
Os::ConditionVariableHandle
Condition variable handle parent.
Definition
Condition.hpp:14
Os::Mutex
Definition
Mutex.hpp:50
Os::Stub::Mutex::StubConditionVariable::notifyAll
void notifyAll() override
notify all current waiters
Definition
ConditionVariable.cpp:21
Os::Stub::Mutex::StubConditionVariable::wait
void wait(Os::Mutex &mutex) override
wait releasing mutex
Definition
ConditionVariable.cpp:12
Os::Stub::Mutex::StubConditionVariable::getHandle
ConditionVariableHandle * getHandle() override
get handle
Definition
ConditionVariable.cpp:26
Os::Stub::Mutex::StubConditionVariable::notify
void notify() override
notify a single waiter
Definition
ConditionVariable.cpp:17
Os
Definition
DirectoryOpenModeEnumAc.cpp:13
Os
Stub
ConditionVariable.cpp
Generated by
1.9.8