/** * @author Edouard DUPIN * * @copyright 2011, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #include #include #include etk::Mutex::Mutex() { // create interface mutex : int ret = pthread_mutex_init(&m_mutex, NULL); TK_ASSERT(ret == 0, "Error creating Mutex ..."); } etk::Mutex::~Mutex() { // Remove mutex int ret = pthread_mutex_destroy(&m_mutex); TK_ASSERT(ret == 0, "Error destroying Mutex ..."); } void etk::Mutex::lock() { pthread_mutex_lock(&m_mutex); } bool etk::Mutex::tryLock() { return pthread_mutex_trylock(&m_mutex) != 0; } void etk::Mutex::unLock() { pthread_mutex_unlock(&m_mutex); }