work-stealing-queue icon indicating copy to clipboard operation
work-stealing-queue copied to clipboard

A fast work-stealing queue template in C++

Results 2 work-stealing-queue issues
Sort by recently updated
recently updated
newest added

It would be good if the library support reverse operation such as multiple producers (ie threads) and single consumer. Is that feasable?

`_top` and `_bottom` can see their values modified by multiple threads at the same time, leading to false sharing. This can be avoided at the cost of a larger memory...