13 template <
typename _Ty>
class queue{
15 using value_type = _Ty;
17 queue() : _head(nullptr), _tail(nullptr){}
18 queue(
const queue&) =
delete;
19 queue& operator=(
const queue&) =
delete;
21 while(
auto oNode = _head.load()){
22 _head.store(oNode->_next);
27 void push(
const value_type& src){
28 auto oNode =
new node(src);
30 oNode->_next = _head.load();
31 }
while (!_head.compare_exchange_strong(&oNode, oNode->_next));
32 node::pointer pNull =
nullptr;
33 _tail.compare_exchange_strong(&pNull, oNode);
35 bool try_pop(value_type& ret){
37 auto oNode = _head.load();
38 if (!oNode)
return false;
43 auto oNode = _head.load();
52 using pointer = node *;
53 using atomic_ptr = std::atomic<pointer>;
56 node(
const value_type& data) : _data(data), _next(nullptr){}
57 node(value_type&& data) : _data(std::move(data)), _next(nullptr){}
60 node::pointer pop_head(){
61 auto ori = _head.load();
62 if (ori == _tail.load()){
65 _head.store(ori->_next);
69 node::atomic_ptr _head;
70 node::atomic_ptr _tail;
host, target and build configurations and settings Various components are purpose built for specific ...