1
0
forked from fsfw/fsfw

rtems mutex update

This commit is contained in:
2020-06-09 13:26:27 +02:00
parent 20abb810f2
commit b5567e8aae
2 changed files with 16 additions and 3 deletions

View File

@ -8,7 +8,7 @@ class Mutex : public MutexIF {
public:
Mutex();
~Mutex();
ReturnValue_t lockMutex(uint32_t timeoutMs);
ReturnValue_t lockMutex(uint32_t timeoutMs = MutexIF::BLOCKING);
ReturnValue_t unlockMutex();
private:
rtems_id mutexId;