国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Linux > 正文

Linux多線程鎖屬性設置方法

2019-11-02 16:49:24
字體:
來源:轉載
供稿:網友

互斥鎖是Linux下多線程資源保護的常用手段,但是在時序復雜的情況下,很容易會出現死鎖的情況。

可以通過設置鎖的屬性,避免同一條線程重復上鎖導致死鎖的問題。

通過int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type)接口設置

一般是以下四種屬性:

PTHREAD_MUTEX_NORMALThis 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_ERRORCHECKThis 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_RECURSIVEA 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_DEFAULTAttempting 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多線程鎖屬性設置方法全部內容了,希望大家多多支持腳本之家~

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 兴宁市| 肇东市| 凌云县| 香河县| 深圳市| 永胜县| 石林| 邹城市| 隆安县| 四平市| 江安县| 怀化市| 永平县| 宁夏| 呼图壁县| 会同县| 惠东县| 同心县| 广西| 海宁市| 如皋市| 永和县| 屏东县| 金乡县| 朝阳县| 克东县| 若羌县| 张家港市| 大同市| 闸北区| 岫岩| 石渠县| 台北县| 慈利县| 筠连县| 永新县| 临泉县| 潮安县| 手游| 武平县| 双牌县|