linux 锁的属性,Linux多线程锁属性设置方法

互斥锁是linux下多线程资源保护的常用手段,但是在时序复杂的情况下,很容易会出现死锁的情况。

可以通过设置锁的属性,避免同一条线程重复上锁导致死锁的问题。

通过int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type)接口设置

一般是以下四种属性:

pthread_mutex_normal

this type of mutex does not detect deadlock. a thread attempting to relock this mutex without first unlocking it will deadlock. attempting to unlock a mutex locked by a different thread results in undefined behaviour. attempting to unlock an unlocked mutex results in undefined behaviour.

pthread_mutex_errorcheck

this type of mutex provides error checking. a thread attempting to relock this mutex without first unlocking it will return with an error. a thread attempting to unlock a mutex which another thread has locked will return with an error. a thread attempting to unlock an unlocked mutex will return with an error.

pthread_mutex_recursive

a thread attempting to relock this mutex without first unlocking it will succeed in locking the mutex. the relocking deadlock which can occur with mutexes of type pthread_mutex_normal cannot occur with this type of mutex. multiple locks of this mutex require the same number of unlocks to release the mutex before another thread can acquire the mutex. a thread attempting to unlock a mutex which another thread has locked will return with an error. a thread attempting to unlock an unlocked mutex will return with an error.

pthread_mutex_default

attempting to recursively lock a mutex of this type results in undefined behaviour. attempting to unlock a mutex of this type which was not locked by the calling thread results in undefined behaviour. attempting to unlock a mutex of this type which is not locked results in undefined behaviour. an implementation is allowed to map this mutex to one of the other mutex types.

这里主要指同一条线程重复上锁,不同线程上锁,无论设置什么属性,当锁已经被锁定后都会互斥阻塞。

使用pthread_mutex_recursive属性,当同一条线程在没有解锁的情况下尝试再次锁定会返回成功。

以上就是小编为大家带来的linux多线程锁属性设置方法全部内容了,希望大家多多支持萬仟网~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值