33 lines
508 B
C++
33 lines
508 B
C++
#include <config/xf-config.h>
|
|
|
|
#if (USE_XF_IDF_QT_MUTEX_CLASS != 0)
|
|
|
|
#include <cassert>
|
|
#include "mutex.h"
|
|
|
|
/**
|
|
* @brief Implementation of interface::XFMutex::create method.
|
|
*/
|
|
interface::XFMutex * interface::XFMutex::create()
|
|
{
|
|
return new ::XFMutex;
|
|
}
|
|
|
|
// TODO: Implement code for XFMutex class
|
|
|
|
#endif // USE_XF_IDF_QT_MUTEX_CLASS
|
|
|
|
|
|
|
|
void XFMutex::lock() {
|
|
mutex_.lock();
|
|
}
|
|
|
|
void XFMutex::unlock() {
|
|
mutex_.unlock();
|
|
}
|
|
|
|
bool XFMutex::tryLock(int32_t timeout) {
|
|
mutex_.tryLock(timeout);
|
|
}
|