中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么實現獲得mutex鎖之后花費的時間短

發布時間:2021-11-25 15:49:28 來源:億速云 閱讀:201 作者:iii 欄目:大數據

這篇文章主要介紹“C++怎么實現獲得mutex鎖之后花費的時間短”,在日常操作中,相信很多人在C++怎么實現獲得mutex鎖之后花費的時間短問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么實現獲得mutex鎖之后花費的時間短”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

CP.43:盡量減少花費在臨界區中的時間

Reason(原因)

The less time is spent with a mutex taken, the less chance that another thread has to wait, and thread suspension and resumption are expensive.

獲得mutex鎖之后花費的時間越短,其他線程需要等待的機會就越小。線程阻塞和喚醒的代價太高了。

Example(示例)

void do_something() // bad
{
   unique_lock<mutex> lck(my_lock);
   do0();  // preparation: does not need lock
   do1();  // transaction: needs locking
   do2();  // cleanup: does not need locking
}

Here, we are holding the lock for longer than necessary: We should not have taken the lock before we needed it and should have released it again before starting the cleanup. We could rewrite this to

這里,我們保持鎖定的時間超出必要的限度了:我們不應該在不需要的時候獲取鎖,另一方面,應該在開始清理之前就釋放鎖。我們可以這樣重寫代碼:

void do_something() // bad
{
   do0();  // preparation: does not need lock
   my_lock.lock();
   do1();  // transaction: needs locking
   my_lock.unlock();
   do2();  // cleanup: does not need locking
}

But that compromises safety and violates the use RAII rule. Instead, add a block for the critical section:

但是這種做法在安全方面進行了妥協,還違反了RAII準則。作為改善,可以為臨界區增加一個代碼塊:

void do_something() // OK
{
   do0();  // preparation: does not need lock
   {
       unique_lock<mutex> lck(my_lock);
       do1();  // transaction: needs locking
   }
   do2();  // cleanup: does not need locking
}
Enforcement(實施建議)

Impossible in general. Flag "naked" lock() and unlock().

一般情況下不可能。標記暴露的lock和unlock操作。

到此,關于“C++怎么實現獲得mutex鎖之后花費的時間短”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新郑市| 平利县| 阳信县| 乌苏市| 新源县| 同德县| 盐津县| 海晏县| 衡阳市| 定襄县| 湖州市| 临泉县| 济宁市| 波密县| 泉州市| 沧州市| 芦溪县| 乌审旗| 卓尼县| 洪雅县| 太仓市| 贺州市| 榆中县| 金乡县| 屯昌县| 通州市| 都昌县| 海丰县| 江北区| 陇西县| 柏乡县| 长子县| 会昌县| 淮南市| 双辽市| 湘乡市| 常山县| 颍上县| 肃北| 广河县| 陆丰市|