1
0
forked from fsfw/fsfw

sempahore wrapper extended

This commit is contained in:
2020-02-25 17:04:21 +01:00
parent 685c18dc4e
commit 083cc7c50a
9 changed files with 204 additions and 25 deletions

View File

@ -3,6 +3,13 @@
#include <framework/returnvalues/HasReturnvaluesIF.h>
/**
* @brief Common interface for OS Mutex objects which provide MUTual EXclusion.
*
* @details https://en.wikipedia.org/wiki/Lock_(computer_science)
* @ingroup osal
* @ingroup interface
*/
class MutexIF {
public:
static const uint32_t NO_TIMEOUT; //!< Needs to be defined in implementation.