fsfw/osal/linux/Mutex.h

19 lines
396 B
C
Raw Normal View History

2020-12-14 21:46:33 +01:00
#ifndef FSFW_OSAL_LINUX_MUTEX_H_
#define FSFW_OSAL_LINUX_MUTEX_H_
2018-07-13 18:28:26 +02:00
2020-08-13 20:53:35 +02:00
#include "../../ipc/MutexIF.h"
2018-07-13 18:28:26 +02:00
#include <pthread.h>
2020-08-07 22:16:10 +02:00
2018-07-13 18:28:26 +02:00
class Mutex : public MutexIF {
public:
Mutex();
virtual ~Mutex();
2020-08-07 22:16:10 +02:00
virtual ReturnValue_t lockMutex(TimeoutType timeoutType, uint32_t timeoutMs);
2018-07-13 18:28:26 +02:00
virtual ReturnValue_t unlockMutex();
private:
pthread_mutex_t mutex;
static uint8_t count;
};
#endif /* OS_RTEMS_MUTEX_H_ */