2020-09-05 21:19:53 +02:00
|
|
|
#ifndef FSFW_OSAL_HOSTED_MUTEX_H_
|
|
|
|
#define FSFW_OSAL_HOSTED_MUTEX_H_
|
2020-09-05 20:18:52 +02:00
|
|
|
|
|
|
|
#include "../../ipc/MutexIF.h"
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief OS component to implement MUTual EXclusion
|
|
|
|
*
|
|
|
|
* @details
|
|
|
|
* Mutexes are binary semaphores which include a priority inheritance mechanism.
|
|
|
|
* Documentation: https://www.freertos.org/Real-time-embedded-RTOS-mutexes.html
|
|
|
|
* @ingroup osal
|
|
|
|
*/
|
|
|
|
class Mutex : public MutexIF {
|
|
|
|
public:
|
2020-09-05 21:19:53 +02:00
|
|
|
Mutex();
|
|
|
|
ReturnValue_t lockMutex(TimeoutType timeoutType =
|
|
|
|
TimeoutType::BLOCKING, uint32_t timeoutMs = 0) override;
|
2020-09-05 20:18:52 +02:00
|
|
|
ReturnValue_t unlockMutex() override;
|
|
|
|
|
|
|
|
std::timed_mutex* getMutexHandle();
|
|
|
|
private:
|
|
|
|
bool locked = false;
|
|
|
|
std::timed_mutex mutex;
|
|
|
|
};
|
|
|
|
|
2020-09-05 21:19:53 +02:00
|
|
|
#endif /* FSFW_OSAL_HOSTED_MUTEX_H_ */
|