gpt4 book ai didi

c++ - 如何处理 pthread_mutex_unlock() 错误?

转载 作者:行者123 更新时间:2023-11-30 01:43:08 25 4
gpt4 key购买 nike

我正在开发一个也能处理错误的线程安全类。我想知道如何处理来自函数 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;
}

谢谢!

编辑:

可变的 _mutex 是一个 protected 类成员(非静态),仅使用 pthread_mutex_init(&_mutex, NULL) 在构造函数中初始化

最佳答案

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

关于c++ - 如何处理 pthread_mutex_unlock() 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38283569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com