1
0
forked from fsfw/fsfw

adapting host osal

This commit is contained in:
2020-06-05 21:36:50 +02:00
parent 2b646551e9
commit 579115f904
5 changed files with 11 additions and 11 deletions

View File

@ -16,7 +16,7 @@
class Mutex : public MutexIF {
public:
Mutex() = default;
ReturnValue_t lockMutex(uint32_t timeoutMs = MutexIF::MAX_TIMEOUT) override;
ReturnValue_t lockMutex(uint32_t timeoutMs = MutexIF::BLOCKING) override;
ReturnValue_t unlockMutex() override;
std::timed_mutex* getMutexHandle();