如何处理pthread_mutex_unlock()错误?

时间:2016-07-09 15:49:52

标签: c++ error-handling pthreads

我正在开发一个也能处理错误的线程安全类。我很想知道如何处理来自函数pthread_mutex_unlock()的可能错误。如果我扔的互斥锁仍然被锁定?我应该尝试再次解锁还是破坏类对象?

int SomeClass::function() {   
    int res = pthread_mutex_lock(&_mutex);
    if(res < 0)
        throw std::runtime_error("lock failed: " + std::string(std::strerror(res)));
    // some code
    res = pthread_mutex_unlock(&_mutex);
    if(res < 0)
        throw std::runtime_error("unlock failed: " + std::string(std::strerror(res)));
    return something;
}

谢谢!

修改

vaiable _mutex是仅使用pthread_mutex_init(&_mutex, NULL)

在构造函数内初始化的受保护类成员(非静态)

1 个答案:

答案 0 :(得分:3)

pthread_mutex_unlock肯定会失败的唯一情况是,解锁的互斥锁不是有效的互斥锁,或者互斥锁不属于您的线程。因此,如果不是这种情况,您不必担心,并且这两个条件都是应用程序错误 - 此时您可以抛出异常而不用担心互斥状态,您有更大的问题。