added header file changes

This commit is contained in:
Robin Müller 2020-08-25 12:08:12 +02:00
parent 49a36d6fdc
commit ab4c65c87a
1 changed files with 1 additions and 1 deletions

View File

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