資料介紹
軟件簡(jiǎn)介
MPMCQueue 是一個(gè)用C ++ 11編寫的有界多生產(chǎn)者多用戶無(wú)鎖隊(duì)列。
示例代碼
MPMCQueueq(10); auto t1 = std::thread([&] { int v; q.pop(v); std::cout << "t1 " << v << "\n"; }); auto t2 = std::thread([&] { int v; q.pop(v); std::cout << "t2 " << v << "\n"; }); q.push(1); q.push(2); t1.join(); t2.join();
使用
-
MPMCQueue
(size_t capacity); Constructs a new?
MPMCQueue
?holding items of type?T
?with capacity?capacity
. -
void emplace(Args &&... args);
Enqueue an item using inplace construction. Blocks if queue is full.
-
bool try_emplace(Args &&... args);
Try to enqueue an item using inplace construction. Returns?
true
?on success and?false
?if queue is full. -
bool push(const T &v);
Enqueue an item using copy construction. Blocks if queue is full.
-
template
bool push(P &&v); Enqueue an item using move construction. Participates in overload resolution only if?
std::is_nothrow_constructible
. Blocks if queue is full.::value == true -
bool try_push(const T &v);
Try to enqueue an item using copy construction. Returns?
true
?on success and?false
?if queue is full. -
template
bool try_push(P &&v); Try to enqueue an item using move construction. Participates in overload resolution only if?
std::is_nothrow_constructible
. Returns?::value == true true
?on success and?false
?if queue is full. -
void pop(T &v);
Dequeue an item by copying or moving the item into?
v
. Blocks if queue is empty. -
bool try_pop(T &v);
Try to dequeue an item by copying or moving the item into?
v
. Return?true
?on sucess and?false
?if the queue is empty.
所有操作都是線程安全的,除了構(gòu)造和析構(gòu)函數(shù)。
實(shí)際原理
Enqeue:
- Acquire next write?ticket?from?head.
- Wait for our?turn?(2 * (ticket / capacity)) to write?slot?(ticket % capacity).
- Set?turn = turn + 1?to inform the readers we are done writing.
Dequeue:
- Acquire next read?ticket?from?tail.
- Wait for our?turn?(2 * (ticket / capacity) + 1) to read?slot?(ticket % capacity).
- Set?turn = turn + 1?to inform the writers we are done reading.
參考資料:
- Dave Dice.?PTLQueue : a scalable bounded-capacity MPMC queue.
- Dmitry Vyukov.?Bounded MPMC queue.
- Massimiliano Meneghin et al.?Performance evaluation of inter-thread communication mechanisms on multicore/multithreaded architectures.
- Oleksandr Otenko.?US 8607249 B2: System and method for efficient concurrent queue implementation.
- Paul E. McKenney.?Memory Barriers: a Hardware View for Software Hackers.
- 國(guó)民技術(shù)使用MMU進(jìn)行多用戶場(chǎng)景下的FLASH分區(qū)保護(hù)V1
- 基于延遲接受的多用戶任務(wù)卸載策略MUTODA 8次下載
- 基于無(wú)證書密碼體制的多用戶秘聞檢索方案 3次下載
- 多用戶多副本數(shù)據(jù)持有性證明方案 0次下載
- 基于自由搜索的多用戶檢測(cè)_任誠(chéng) 0次下載
- 基于物聯(lián)網(wǎng)的多用戶智能電表系統(tǒng) 81次下載
- 多用戶密碼鎖的設(shè)計(jì)
- 基于遺傳算法和小波變換的混合多用戶檢測(cè)
- 基于DSP的多用戶混沌保密通信系統(tǒng)研究
- 同步短波差分跳頻多址系統(tǒng)單用戶及多用戶檢測(cè)的性能
- 下行MIMO通信系統(tǒng)的多用戶分集研究
- 一種多用戶多中繼MIMO通信系統(tǒng)迭代預(yù)編碼方案
- 多用戶檢測(cè)技術(shù)在WCDMA中的應(yīng)用
- 多用戶通信系統(tǒng)
- 多用戶檢測(cè)技術(shù)對(duì)CDMA系統(tǒng)的影響研究
- 晶華微多用戶代碼燒錄器解決方案 238次閱讀
- RocketMQ生產(chǎn)者為什么需要負(fù)載均衡? 352次閱讀
- 消息隊(duì)列的發(fā)展歷史 844次閱讀
- RabbitMQ中的路由模型(direct) 395次閱讀
- 怎么設(shè)計(jì)實(shí)現(xiàn)一個(gè)無(wú)鎖高并發(fā)的環(huán)形連續(xù)內(nèi)存緩沖隊(duì)列 1107次閱讀
- 如何使用消息隊(duì)列進(jìn)行通信 1193次閱讀
- 什么是消息隊(duì)列?消息隊(duì)列中間件重要嗎? 1263次閱讀
- SystemVerilog中的隊(duì)列 3681次閱讀
- 關(guān)于CAS等原子操作介紹 無(wú)鎖隊(duì)列的鏈表實(shí)現(xiàn)方法 3199次閱讀
- 干貨:Linux內(nèi)核中等待隊(duì)列的四個(gè)用法 2765次閱讀
- 單表多用戶模塊化智能電表系統(tǒng)的原理及設(shè)計(jì) 1840次閱讀
- Linux系統(tǒng)下如何臨時(shí)或者永久關(guān)閉防火墻 1.7w次閱讀
- 深度解讀通信系統(tǒng)中的CDMA多用戶傳輸仿真技術(shù) 2086次閱讀
- 無(wú)線知識(shí)充電站:圖解多址技術(shù) 2664次閱讀
- 多隊(duì)列FIFO——支持網(wǎng)絡(luò)QoS的重要芯片 1111次閱讀
下載排行
本周
- 1山景DSP芯片AP8248A2數(shù)據(jù)手冊(cè)
- 1.06 MB | 532次下載 | 免費(fèi)
- 2RK3399完整板原理圖(支持平板,盒子VR)
- 3.28 MB | 339次下載 | 免費(fèi)
- 3TC358743XBG評(píng)估板參考手冊(cè)
- 1.36 MB | 330次下載 | 免費(fèi)
- 4DFM軟件使用教程
- 0.84 MB | 295次下載 | 免費(fèi)
- 5元宇宙深度解析—未來(lái)的未來(lái)-風(fēng)口還是泡沫
- 6.40 MB | 227次下載 | 免費(fèi)
- 6迪文DGUS開發(fā)指南
- 31.67 MB | 194次下載 | 免費(fèi)
- 7元宇宙底層硬件系列報(bào)告
- 13.42 MB | 182次下載 | 免費(fèi)
- 8FP5207XR-G1中文應(yīng)用手冊(cè)
- 1.09 MB | 178次下載 | 免費(fèi)
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費(fèi)
- 2555集成電路應(yīng)用800例(新編版)
- 0.00 MB | 33566次下載 | 免費(fèi)
- 3接口電路圖大全
- 未知 | 30323次下載 | 免費(fèi)
- 4開關(guān)電源設(shè)計(jì)實(shí)例指南
- 未知 | 21549次下載 | 免費(fèi)
- 5電氣工程師手冊(cè)免費(fèi)下載(新編第二版pdf電子書)
- 0.00 MB | 15349次下載 | 免費(fèi)
- 6數(shù)字電路基礎(chǔ)pdf(下載)
- 未知 | 13750次下載 | 免費(fèi)
- 7電子制作實(shí)例集錦 下載
- 未知 | 8113次下載 | 免費(fèi)
- 8《LED驅(qū)動(dòng)電路設(shè)計(jì)》 溫德爾著
- 0.00 MB | 6656次下載 | 免費(fèi)
總榜
- 1matlab軟件下載入口
- 未知 | 935054次下載 | 免費(fèi)
- 2protel99se軟件下載(可英文版轉(zhuǎn)中文版)
- 78.1 MB | 537798次下載 | 免費(fèi)
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420027次下載 | 免費(fèi)
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234315次下載 | 免費(fèi)
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費(fèi)
- 6電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191187次下載 | 免費(fèi)
- 7十天學(xué)會(huì)AVR單片機(jī)與C語(yǔ)言視頻教程 下載
- 158M | 183279次下載 | 免費(fèi)
- 8proe5.0野火版下載(中文版免費(fèi)下載)
- 未知 | 138040次下載 | 免費(fèi)
評(píng)論
查看更多