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

首頁 > 服務器 > Linux服務器 > 正文

Linux多線程鎖屬性設置方法

2024-09-05 23:03:27
字體:
來源:轉載
供稿:網友

互斥鎖是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多線程鎖屬性設置方法全部內容了,希望大家多多支持VEVB武林網~


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 依安县| 灌南县| 富裕县| 汤阴县| 铁岭市| 铜梁县| 平阴县| 武穴市| 额尔古纳市| 安仁县| 南通市| 资溪县| 珲春市| 清新县| 甘洛县| 石门县| 花垣县| 湖州市| 余干县| 阜康市| 平山县| 余干县| 新田县| 广灵县| 安多县| SHOW| 柘城县| 招远市| 弥勒县| 浑源县| 同心县| 五家渠市| 禹城市| 云阳县| 醴陵市| 铜山县| 新闻| 西宁市| 庆元县| 南宫市| 石景山区|