C++一读一写无锁队列
摘要:
```cpp // 一读一写的无锁管道队列 template class PipelineList { private: template struct qnode { struct qnode *next; T data; }; struct qnode* volatile m_front; st 阅读全文
posted @ 2023-06-26 17:15 街角_祝福 阅读(65) 评论(0) 推荐(0) 编辑