fsfw/ipc/MutexHelper.h

25 lines
582 B
C
Raw Normal View History

2018-07-13 18:28:26 +02:00
#ifndef FRAMEWORK_IPC_MUTEXHELPER_H_
#define FRAMEWORK_IPC_MUTEXHELPER_H_
2020-08-13 20:53:35 +02:00
#include "MutexFactory.h"
#include "../serviceinterface/ServiceInterfaceStream.h"
2018-07-13 18:28:26 +02:00
class MutexHelper {
public:
MutexHelper(MutexIF* mutex, uint32_t timeoutMs) :
internalMutex(mutex) {
ReturnValue_t status = mutex->lockMutex(timeoutMs);
if(status != HasReturnvaluesIF::RETURN_OK){
sif::error << "MutexHelper: Lock of Mutex failed " << status << std::endl;
2018-07-13 18:28:26 +02:00
}
}
~MutexHelper() {
internalMutex->unlockMutex();
}
private:
MutexIF* internalMutex;
};
#endif /* FRAMEWORK_IPC_MUTEXHELPER_H_ */